diff --git a/frontend/vite.config.ts b/frontend/vite.config.ts index 0b062a9..8de7f4b 100644 --- a/frontend/vite.config.ts +++ b/frontend/vite.config.ts @@ -24,5 +24,12 @@ export default defineConfig({ '@': fileURLToPath(new URL('./src', import.meta.url)), }, }, + server: { + fs: { + allow: [fileURLToPath(new URL('.', import.meta.url))], + strict: false, + }, + host: '127.0.0.1', + }, })