summaryrefslogtreecommitdiffhomepage
path: root/packages/app/vite.config.ts
blob: 6a29ae6345e0633c413e116d55f301518f77ba4d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import { defineConfig } from "vite"
import desktopPlugin from "./vite"

export default defineConfig({
  plugins: [desktopPlugin] as any,
  server: {
    host: "0.0.0.0",
    allowedHosts: true,
    port: 3000,
  },
  build: {
    target: "esnext",
    // sourcemap: true,
  },
})