Backup: 2025-07-21 18:13 - I got Claude Code
Some checks failed
CI/CD Pipeline / Backend Tests (push) Has been cancelled
CI/CD Pipeline / Frontend Tests (push) Has been cancelled
CI/CD Pipeline / Build Docker Images (push) Has been cancelled
CI/CD Pipeline / Security Scan (push) Has been cancelled
CI/CD Pipeline / Deploy to Staging (push) Has been cancelled
CI/CD Pipeline / Deploy to Production (push) Has been cancelled
E2E Tests / E2E Tests - ${{ github.event.inputs.environment || 'staging' }} (push) Has been cancelled
E2E Tests / Notify Results (push) Has been cancelled
Dependency Updates / Update Dependencies (push) Has been cancelled

[Restore from backup: vip-coordinator-backup-2025-07-21-18-13-I got Claude Code]
This commit is contained in:
2025-07-21 18:13:00 +02:00
parent 36cb8e8886
commit 8ace1ab2c1
33 changed files with 3507 additions and 3656 deletions

View File

@@ -14,45 +14,36 @@ export default defineConfig({
port: 5173,
allowedHosts: [
'localhost',
'127.0.0.1',
'bsa.madeamess.online',
'.madeamess.online' // Allow all subdomains
'127.0.0.1'
],
headers: {
'Cross-Origin-Opener-Policy': 'same-origin-allow-popups'
},
proxy: {
'/api': {
target: 'http://127.0.0.1:3000',
target: 'http://backend:3000',
changeOrigin: true,
},
// Only proxy specific auth endpoints, not the callback route
'/auth/setup': {
target: 'http://127.0.0.1:3000',
target: 'http://backend:3000',
changeOrigin: true,
},
'/auth/google/url': {
target: 'http://127.0.0.1:3000',
target: 'http://backend:3000',
changeOrigin: true,
},
'/auth/google/exchange': {
target: 'http://127.0.0.1:3000',
changeOrigin: true,
},
'/auth/google/verify': {
target: 'http://127.0.0.1:3000',
target: 'http://backend:3000',
changeOrigin: true,
},
'/auth/me': {
target: 'http://127.0.0.1:3000',
target: 'http://backend:3000',
changeOrigin: true,
},
'/auth/logout': {
target: 'http://127.0.0.1:3000',
target: 'http://backend:3000',
changeOrigin: true,
},
'/auth/status': {
target: 'http://127.0.0.1:3000',
target: 'http://backend:3000',
changeOrigin: true,
},
},