fix: change NocoDB proxy from /api to /api/v2 to avoid route collision
All checks were successful
Deploy HiHala Dashboard / deploy (push) Successful in 9s

The catch-all /api proxy was swallowing /api/seasons requests before
the specific proxy rule could match. Narrowing to /api/v2 fixes this
since all NocoDB REST calls use /api/v2/ paths.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
fahed
2026-03-31 16:58:41 +03:00
parent 9657a9d221
commit a06436baac

View File

@@ -18,7 +18,7 @@ export default defineConfig({
target: 'http://localhost:3002',
changeOrigin: true,
},
'/api': {
'/api/v2': {
target: 'http://localhost:8090',
changeOrigin: true,
},