chore: configure Google OAuth environment variables, update API proxy settings, and ignore .env files

This commit is contained in:
Alexis
2026-05-14 11:15:54 +02:00
parent d81b33bc3b
commit 89fae7fa13
4 changed files with 10 additions and 3 deletions
+7 -1
View File
@@ -10,6 +10,12 @@ export default defineConfig({
],
server: {
host: '0.0.0.0',
allowedHosts: true
allowedHosts: true,
proxy: {
'/api': {
target: process.env.BACKEND_URL || 'http://backend:8000',
changeOrigin: true
}
}
}
})