Mercurial > code > home > repos > light9
view light9/fade/vite.config.ts @ 2280:e462853f1ef6
redo homepage and metrics calcs. still a mess
author | drewp@bigasterisk.com |
---|---|
date | Mon, 29 May 2023 19:35:37 -0700 |
parents | d193689223fb |
children |
line wrap: on
line source
import { defineConfig } from "vite"; const servicePort = 8219; export default defineConfig({ base: "/fade/", root: "./light9/fade/", publicDir: "../..", server: { host: "0.0.0.0", base: "/fade/", strictPort: true, port: servicePort + 100, hmr: { port: servicePort + 200, }, }, clearScreen: false, define: { global: {}, }, });