fix(vite): allow game-no.ir domain in allowedHosts

This commit is contained in:
2026-08-13 12:09:00 +03:30
parent 2a3444e622
commit 44b1f019f6
+7 -1
View File
@@ -11,6 +11,12 @@ export default defineConfig({
}, },
server: { server: {
port: 5174, port: 5174,
strictPort: true strictPort: true,
allowedHosts: ['game-no.ir', '.game-no.ir']
},
preview: {
port: 5174,
strictPort: true,
allowedHosts: ['game-no.ir', '.game-no.ir']
} }
}) })