2025-09-15 07:28:08 +00:00
|
|
|
import { defineConfig } from "vite"
|
2025-12-05 20:39:49 +00:00
|
|
|
import desktopPlugin from "./vite"
|
2025-09-15 07:28:08 +00:00
|
|
|
|
|
|
|
|
export default defineConfig({
|
2025-12-05 20:39:49 +00:00
|
|
|
plugins: [desktopPlugin] as any,
|
2025-09-15 07:28:08 +00:00
|
|
|
server: {
|
|
|
|
|
host: "0.0.0.0",
|
2025-11-22 01:41:27 +00:00
|
|
|
allowedHosts: true,
|
2025-09-15 07:28:08 +00:00
|
|
|
port: 3000,
|
|
|
|
|
},
|
|
|
|
|
build: {
|
|
|
|
|
target: "esnext",
|
2025-12-30 03:13:01 +00:00
|
|
|
// sourcemap: true,
|
2025-09-15 07:28:08 +00:00
|
|
|
},
|
|
|
|
|
})
|