From 7ec0d10155e1876905f4d2ce2a9ef309ac8a17b9 Mon Sep 17 00:00:00 2001 From: Leo Vasanko Date: Tue, 18 Aug 2026 05:49:00 +0000 Subject: [PATCH] Proxy /_themes to the backend in the Vite dev server --- frontend/vite.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/vite.config.js b/frontend/vite.config.js index df9dbb7..490d060 100644 --- a/frontend/vite.config.js +++ b/frontend/vite.config.js @@ -15,7 +15,7 @@ const CONTENT_PROXY = '^\\/(?!_|@|src|node_modules|__)(?:[^./?]+(?:\\/[^./?]+)*) // https://vite.dev/config/ export default defineConfig({ plugins: [ - fastapiVue({ paths: ["/_api", "/_f"] }), + fastapiVue({ paths: ["/_api", "/_f", "/_themes"] }), vue(), vueDevTools(), ],