Changeset - f01b6810c157
[Not reviewed]
default
0 1 0
drewp@bigasterisk.com - 20 months ago 2023-05-18 00:41:29
drewp@bigasterisk.com
fix collector publicDir
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
light9/collector/web/vite.config.ts
Show inline comments
 
import { defineConfig } from "vite";
 

	
 
const servicePort = 8202;
 
export default defineConfig({
 
  base: "/collector/",
 
  root: "./light9/collector/web",
 
  publicDir: "../web",
 
  publicDir: "../../web",
 
  server: {
 
    host: "0.0.0.0",
 
    strictPort: true,
 
    port: servicePort + 100,
 
    hmr: {
 
      port: servicePort + 200,
0 comments (0 inline, 0 general)