diff --git a/frontend/vite.config.ts b/frontend/vite.config.ts index a07631e..8a14c39 100644 --- a/frontend/vite.config.ts +++ b/frontend/vite.config.ts @@ -17,6 +17,12 @@ const config = { precompress: false, }) }, + server: { + fs: { + // Allow serving files from one level up to the project root + allow: ['..'], + }, + }, }; export default config;