From eae25153364bb1594d30cd407b96cd31dfd0f0fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Cdongming=E2=80=9D?= <“lidongming@aituringflow.com”> Date: Thu, 18 Dec 2025 21:48:00 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E6=B7=BB=E5=8A=A0allowedHosts?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- vite.config.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/vite.config.js b/vite.config.js index 72d4f59..e4fae24 100644 --- a/vite.config.js +++ b/vite.config.js @@ -7,5 +7,7 @@ export default defineConfig({ plugins: [tailwindcss(), react()], server: { port: 3000, + allowedHosts: true, + host: "0.0.0.0" }, });