fix: allow game.conlon.fun in vite dev server

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
root
2026-03-07 04:49:05 +00:00
parent 4374914b29
commit 836ea77c73
+11
View File
@@ -7,7 +7,18 @@ export default defineConfig({
'@dflike/shared': path.resolve(__dirname, '../shared/src'),
},
},
build: {
rollupOptions: {
output: {
manualChunks: {
phaser: ['phaser'],
},
},
},
},
server: {
port: 3000,
host: true,
allowedHosts: ['game.conlon.fun'],
},
});