pay-tools/vite.config.ts

28 lines
799 B
TypeScript
Raw Permalink Normal View History

2024-08-30 10:41:43 +08:00
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import UnoCSS from 'unocss/vite'
2024-08-30 10:23:26 +08:00
2024-09-03 15:58:18 +08:00
// @ts-expect-error process is a nodejs global
const host = process.env.TAURI_DEV_HOST
2024-08-30 10:23:26 +08:00
// https://vitejs.dev/config/
export default defineConfig(async () => ({
2024-08-30 10:41:43 +08:00
plugins: [vue(), UnoCSS()],
2024-08-30 10:23:26 +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,
// 2. tauri expects a fixed port, fail if that port is not available
server: {
port: 1420,
strictPort: true,
2024-09-03 15:58:18 +08:00
host: host || false,
hmr: host ? { protocol: 'ws', host, port: 1421 } : undefined,
2024-08-30 10:23:26 +08:00
watch: {
// 3. tell vite to ignore watching `src-tauri`
2024-08-30 10:41:43 +08:00
ignored: ['**/src-tauri/**']
}
}
}))