Change allowedHosts to true in Vite config

This commit is contained in:
Alexis López
2026-04-22 13:01:36 +02:00
committed by GitHub
parent 04f4d16752
commit d8ee638210
+1 -1
View File
@@ -10,6 +10,6 @@ export default defineConfig({
], ],
server: { server: {
host: '0.0.0.0', host: '0.0.0.0',
allowedHosts: 'all' allowedHosts: true
} }
}) })