From 64f6f76160849a98f2f2b461db56f6b3b335b9da Mon Sep 17 00:00:00 2001 From: David Montero Crespo Date: Thu, 16 Apr 2026 23:13:16 -0300 Subject: [PATCH] fix: update proxy target to use 127.0.0.1 and mark subproject commits as dirty --- frontend/vite.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/vite.config.ts b/frontend/vite.config.ts index 8d34bd91..f70f610f 100644 --- a/frontend/vite.config.ts +++ b/frontend/vite.config.ts @@ -15,7 +15,7 @@ export default defineConfig({ server: { proxy: { '/api': { - target: 'http://localhost:8001', + target: 'http://127.0.0.1:8001', changeOrigin: true, }, },