mirror of
https://github.com/AventurasTeam/Aventuras.git
synced 2026-04-26 10:51:24 +00:00
* fix: prettier, eslint, pipeline * fix: eslintignore, branch trigger * fix: eslint missing package * chore: format * fix: eslint config * chore: lint wip * chore: lint * chore: lint * chore: typecheck wip * fix: typecheck * fix: typecheck * fix: pipeline: add build step * feat: pre-push code quality check
32 lines
836 B
JavaScript
32 lines
836 B
JavaScript
import { defineConfig } from 'vite'
|
|
import { sveltekit } from '@sveltejs/kit/vite'
|
|
import tailwindcss from '@tailwindcss/vite'
|
|
|
|
const host = process.env.TAURI_DEV_HOST
|
|
|
|
// https://vite.dev/config/
|
|
export default defineConfig(async () => ({
|
|
plugins: [tailwindcss(), sveltekit()],
|
|
|
|
// 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,
|
|
host: host || false,
|
|
hmr: host
|
|
? {
|
|
protocol: 'ws',
|
|
host,
|
|
port: 1421,
|
|
}
|
|
: undefined,
|
|
watch: {
|
|
// 3. tell Vite to ignore watching `src-tauri`
|
|
ignored: ['**/src-tauri/**'],
|
|
},
|
|
},
|
|
}))
|