From 8fb2df072d34e415a3aabc36272bc3e41116ac7f Mon Sep 17 00:00:00 2001 From: Noa Virellia Date: Sun, 28 Dec 2025 16:28:40 +0800 Subject: [PATCH] chore(client): specify dev server host Signed-off-by: Noa Virellia --- client/vite.config.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/client/vite.config.ts b/client/vite.config.ts index bfd5f59..f52b72c 100644 --- a/client/vite.config.ts +++ b/client/vite.config.ts @@ -25,6 +25,8 @@ export default defineConfig({ proxy: { '/api': 'http://10.0.0.10:8000', }, - allowedHosts: ['dev.sne.moe'], + host: '0.0.0.0', + port: 5173, + allowedHosts: ['test.sne.moe'], }, });