Aventuras/vite.config.js
failerko a4ae3bbf01
fix: prettier, eslint, pipeline (#71)
* 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
2026-02-06 00:49:36 +01:00

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/**'],
},
},
}))