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