From c7e59563b6ad61eda4c0fca76e14f28a83e55141 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20Erbsh=C3=A4u=C3=9Fer?= Date: Sun, 24 May 2026 09:22:36 +0200 Subject: [PATCH] correct /api for development MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Tobias Erbshäußer --- frontend/vite.config.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/frontend/vite.config.js b/frontend/vite.config.js index 647c9bd..5f14e33 100644 --- a/frontend/vite.config.js +++ b/frontend/vite.config.js @@ -25,9 +25,8 @@ export default { }, proxy: { '/api': { - target: 'http://localhost:8055', + target: 'http://localhost:8080', changeOrigin: false, - rewrite: (path) => path.replace(/^\/api/, ''), }, } }