Files @ 06da5db2fafe
Branch filter:

Location: light9/web/timeline/vite.config.ts

drewp@bigasterisk.com
rewrite ascoltami to use the graph for more playback data
import { defineConfig } from "vite";

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