From 8b0080162819f2010e7becda0a9d877ef6afe315 Mon Sep 17 00:00:00 2001 From: 10x Developer Date: Mon, 4 May 2026 21:40:08 +0200 Subject: [PATCH] Allow all hosts in Vite config for external access --- vite.config.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/vite.config.js b/vite.config.js index 9ffcc67..784d3bf 100644 --- a/vite.config.js +++ b/vite.config.js @@ -3,4 +3,8 @@ import react from '@vitejs/plugin-react' export default defineConfig({ plugins: [react()], + server: { + host: true, + port: 3000 + } })