Backup: 2025-06-07 18:32 - Production setup complete

[Restore from backup: vip-coordinator-backup-2025-06-07-18-32-production-setup-complete]
This commit is contained in:
2025-06-07 18:32:00 +02:00
parent aa900505b9
commit ae3702c3b1
32 changed files with 2120 additions and 1494 deletions

View File

@@ -3,9 +3,11 @@ import react from '@vitejs/plugin-react'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react()],
plugins: [
react(),
],
css: {
postcss: './postcss.config.js',
postcss: './postcss.config.mjs',
},
server: {
host: '0.0.0.0',
@@ -45,10 +47,6 @@ export default defineConfig({
target: 'http://backend:3000',
changeOrigin: true,
},
'/auth/dev-login': {
target: 'http://backend:3000',
changeOrigin: true,
},
},
},
})