Files @ b61c2369aa08
Branch filter:

Location: light9/light9/homepage/vite.config.ts

drewp@bigasterisk.com
checkpoint show data
import { defineConfig } from "vite";

const servicePort = 8200; // (not really, for homepage)
export default defineConfig({
  base: "/",
  root: "./light9/homepage",
  publicDir: "../web",
  server: {
    host: "0.0.0.0",
    strictPort: true,
    port: servicePort + 100,
    hmr: {
      port: servicePort + 200,
    },
  },
  clearScreen: false,
  define: {
    global: {},
  },
});