From c3eda37f659298680bb746c406e2aa885211f5e1 Mon Sep 17 00:00:00 2001 From: Docker Config Backup Date: Mon, 13 Apr 2026 15:22:37 +0200 Subject: [PATCH] =?UTF-8?q?fix(dev):=20vite=20proxy=20=E2=86=92=20port=203?= =?UTF-8?q?090?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The TKB server runs on 3090; the proxy was still pointed at 3080 from the METRO project origin, so the dev server returned the wrong schema (stations instead of people). Co-Authored-By: Claude Opus 4.6 (1M context) --- web/vite.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/vite.config.ts b/web/vite.config.ts index 8041d3e..680eb30 100644 --- a/web/vite.config.ts +++ b/web/vite.config.ts @@ -6,7 +6,7 @@ export default defineConfig({ plugins: [react(), tailwindcss()], server: { proxy: { - '/api': 'http://localhost:3080', + '/api': 'http://localhost:3090', }, }, })