fix: allow custom hosts in Vite server config

This commit is contained in:
2026-08-12 06:16:57 +03:30
parent a0c91660b1
commit b77be5d6ee
+4
View File
@@ -9,6 +9,10 @@ export default defineConfig({
alias: { alias: {
'@': fileURLToPath(new URL('./src', import.meta.url)) '@': fileURLToPath(new URL('./src', import.meta.url))
} }
},
server: {
host: true,
allowedHosts: true
} }
}) })