Files @ 3a2e58725037
Branch filter:

Location: light9/web/vite.config.ts

drewp@bigasterisk.com
make bin/* match
import { defineConfig } from "vite";

export default defineConfig({
  base: "/",
  root: "./web",
  publicDir: "../node_modules",
  server: {
    host: "0.0.0.0",
    strictPort: true,
    port: 8300,
    hmr: {
      port: 8301,
    },
  },
  clearScreen: false,
  define: {
    global: {},
  },
});