KSlab/vite.config.ts

37 lines
915 B
TypeScript
Raw Normal View History

2024-10-05 17:11:42 +00:00
import { defineConfig } from "vite"
import kaioken from "vite-plugin-kaioken"
2024-10-23 04:47:57 +00:00
import eslint from "vite-plugin-eslint"
import checker from "vite-plugin-checker"
2024-09-28 08:24:39 +00:00
// https://vitejs.dev/config/
export default defineConfig({
2024-10-23 04:47:57 +00:00
plugins: [
kaioken(),
eslint({
cache: true,
ignorePatterns: ["src-tauri"],
2024-10-23 04:47:57 +00:00
emitError: true,
emitWarning: true,
failOnError: false,
failOnWarning: false,
lintOnStart: true,
}),
checker({
typescript: true,
}),
2024-10-23 04:47:57 +00:00
],
2024-09-28 08:24:39 +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,
// 2. tauri expects a fixed port, fail if that port is not available
server: {
port: 1420,
strictPort: true,
watch: {
// 3. tell vite to ignore watching `src-tauri`
ignored: ["**/src-tauri/**"],
},
},
2024-10-05 17:11:42 +00:00
})