Files
opencode/packages/app/vite.config.ts
2025-12-30 04:57:36 -06:00

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,
},
})