From f94d9915257e79d6503892fbebcdca8f79dbf9f3 Mon Sep 17 00:00:00 2001 From: "smx.pusha" <139338836+smxpusha@users.noreply.github.com> Date: Thu, 6 Aug 2026 12:35:29 +0200 Subject: [PATCH] FIX - expose phone browser test on IPv4 --- frontend/vite.config.ts | 7 +++++++ 1 file changed, 7 insertions(+) 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', + }, })