diff --git a/vite.config.ts b/vite.config.ts index e0b096c8e8..3a525704af 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -16,6 +16,10 @@ export default defineConfig((config) => { define: { 'process.env.NODE_ENV': JSON.stringify(process.env.NODE_ENV), }, + server: { + host: true, + allowedHosts: 'all', + }, build: { target: 'esnext', }, @@ -109,4 +113,4 @@ function chrome129IssuePlugin() { }); }, }; -} \ No newline at end of file +}