feature/USERS #12

Merged
ab merged 5 commits from feature/USERS into DEV 2026-04-08 16:51:25 +00:00
2 changed files with 6 additions and 1 deletions
Showing only changes of commit ea2fc53faf - Show all commits
+2 -1
View File
@@ -1 +1,2 @@
VITE_FURUMI_API_URL=http://localhost:8085 # Leave empty — vite proxy handles /api in dev, same-origin in production
VITE_FURUMI_API_URL=
+4
View File
@@ -14,6 +14,10 @@ export default defineConfig({
target: 'http://localhost:3001', target: 'http://localhost:3001',
changeOrigin: true, changeOrigin: true,
}, },
'/api': {
target: 'http://localhost:8085',
changeOrigin: true,
},
}, },
}, },
}) })