Files @ e61eb9bb36d3
Branch filter:

Location: light9/web/vite.config.ts - annotation

drewp@bigasterisk.com
fiix pytest; stop using ./lib
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: {},
  },
});