import { defineConfig } from 'vite'; export default defineConfig({ server: { host: true, port: 5199, // The game is served through a trycloudflare quick tunnel as well as // locally; allow any Host header (no sensitive defaults to protect). allowedHosts: true, }, preview: { host: true, port: 5199, allowedHosts: true, }, });