mirror of
https://github.com/sst/opencode.git
synced 2025-12-23 10:11:41 +00:00
15 lines
277 B
TypeScript
15 lines
277 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,
|
|
},
|
|
})
|