mirror of
https://github.com/OpenListTeam/OpenList-Desktop.git
synced 2025-11-25 03:14:56 +08:00
44 lines
947 B
TypeScript
44 lines
947 B
TypeScript
|
|
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}"`
|
||
|
|
}
|
||
|
|
}))
|