Files
OpenList-Desktop/vite.config.ts

44 lines
947 B
TypeScript
Raw Normal View History

2025-06-26 15:09:20 +08:00
import { resolve } from 'node:path'
import vue from '@vitejs/plugin-vue'
import { defineConfig } from 'vite'
const host = process.env.TAURI_DEV_HOST
// https://vitejs.dev/config/
export default defineConfig(async () => ({
plugins: [vue()],
// Path aliases
resolve: {
alias: {
'@': resolve(__dirname, 'src')
}
},
// Vite options tailored for Tauri development and only applied in `tauri dev` or `tauri build`
//
// 1. prevent vite from obscuring rust errors
clearScreen: false,
// 2. tauri expects a fixed port, fail if that port is not available
server: {
port: 5173,
strictPort: true,
host: host || false,
hmr: host
? {
protocol: 'ws',
host,
port: 5173
}
: undefined,
watch: {
// 3. tell vite to ignore watching `src-tauri`
ignored: ['**/src-tauri/**']
}
},
define: {
OS_PLATFORM: `"${process.platform}"`
}
}))