fix: Update proxy target to backend port 5082 (Refs #2)

This commit is contained in:
2026-04-01 15:10:15 -03:00
parent 08cd32ba85
commit 48aaaa798c
2 changed files with 2 additions and 2 deletions

View File

@@ -1 +1 @@
VITE_API_URL=http://localhost:5000/api
VITE_API_URL=http://localhost:5082/api

View File

@@ -8,7 +8,7 @@ export default defineConfig({
port: 8181,
proxy: {
'/api': {
target: 'http://localhost:5000',
target: 'http://localhost:5082',
changeOrigin: true,
},
},