mirror of
https://github.com/anomalyco/opencode.git
synced 2026-02-01 22:48:16 +00:00
16 lines
280 B
TypeScript
16 lines
280 B
TypeScript
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,
|
|
},
|
|
})
|