From 79a30dd179e7781bb9706599b8727fc67145a245 Mon Sep 17 00:00:00 2001 From: Oliver Hofmann Date: Sun, 10 May 2026 10:40:41 +0200 Subject: [PATCH] Route /api/logs to admin API in Vite proxy config --- frontend/vite.config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/vite.config.js b/frontend/vite.config.js index 99eb14b..653ba4a 100644 --- a/frontend/vite.config.js +++ b/frontend/vite.config.js @@ -11,6 +11,7 @@ export default defineConfig({ '/api/settings': 'http://localhost:8001', '/api/ollama-models': 'http://localhost:8001', '/api/proxy-info': 'http://localhost:8001', + '/api/logs': 'http://localhost:8001', '/api': 'http://localhost:8000', }, },