opencode_offline/packages/desktop/vite.config.ts

38 lines
882 B
TypeScript
Raw Normal View History

2025-11-22 13:15:55 +08:00
import { defineConfig } from "vite"
import appPlugin from "@opencode-ai/app/vite"
2025-11-22 13:15:01 +08:00
2025-11-22 13:15:55 +08:00
const host = process.env.TAURI_DEV_HOST
2025-11-22 13:15:01 +08:00
// https://vite.dev/config/
export default defineConfig({
plugins: [appPlugin],
2025-11-22 13:15:01 +08:00
// Vite options tailored for Tauri development and only applied in `tauri dev` or `tauri build`
//
// 1. prevent Vite from obscuring rust errors
clearScreen: false,
2025-12-30 07:29:52 +08:00
esbuild: {
2025-12-30 11:13:01 +08:00
// Improves production stack traces
2025-12-30 07:29:52 +08:00
keepNames: true,
},
2025-12-30 11:13:01 +08:00
// build: {
// sourcemap: true,
// },
2025-11-22 13:15:01 +08:00
// 2. tauri expects a fixed port, fail if that port is not available
server: {
port: 1420,
strictPort: true,
host: host || false,
hmr: host
? {
protocol: "ws",
host,
port: 1421,
}
: undefined,
watch: {
// 3. tell Vite to ignore watching `src-tauri`
ignored: ["**/src-tauri/**"],
},
},
})