mirror of
https://github.com/anomalyco/opencode.git
synced 2026-07-17 12:56:41 +02:00
cd6bfb3f69
Co-authored-by: Adam <2363879+adamdotdevin@users.noreply.github.com>
15 lines
256 B
TypeScript
15 lines
256 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",
|
|
},
|
|
})
|