push commit

This commit is contained in:
2026-05-19 20:17:04 +02:00
parent c15defa2d4
commit 8c75989841
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -1 +1 @@
VITE_API_URL=https://localhost:7091 VITE_API_URL=https://localhost:7125
+1 -1
View File
@@ -48,7 +48,7 @@ function App() {
async function populateWeatherData() { async function populateWeatherData() {
const response = await fetch( const response = await fetch(
`${import.meta.env.VITE_API_URL}/weatherforecast` `${import.meta.env.VITE_API_URL}/WeatherForecast`
) )
if (response.ok) { if (response.ok) {
const data = await response.json(); const data = await response.json();
+1 -1
View File
@@ -33,6 +33,6 @@ export default defineConfig({
cert: fs.readFileSync(certFilePath), cert: fs.readFileSync(certFilePath),
}, },
port: 5173 port: 5176
} }
}) })