cloudaxe-opencode/packages/desktop/vite.config.ts

39 lines
912 B
TypeScript
Raw Permalink Normal View History

2025-11-22 05:15:55 +00:00
import { defineConfig } from "vite"
import appPlugin from "@opencode-ai/app/vite"
2025-11-22 05:15:01 +00:00
2025-11-22 05:15:55 +00:00
const host = process.env.TAURI_DEV_HOST
2025-11-22 05:15:01 +00:00
// https://vite.dev/config/
export default defineConfig({
plugins: [appPlugin],
2026-01-09 17:57:27 +00:00
publicDir: "../app/public",
2025-11-22 05:15:01 +00: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-29 23:29:52 +00:00
esbuild: {
2025-12-30 03:13:01 +00:00
// Improves production stack traces
2025-12-29 23:29:52 +00:00
keepNames: true,
},
2025-12-30 03:13:01 +00:00
// build: {
// sourcemap: true,
// },
2025-11-22 05:15:01 +00: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/**"],
},
},
})