import { defineConfig } from 'vite' import react from '@vitejs/plugin-react' // https://vite.dev/config/ export default defineConfig({ plugins: [react()], // Tauri expects a fixed port for the dev server server: { port: 1420, strictPort: true, }, // Prevent vite from obscuring rust errors clearScreen: false, // To make use of `TAURI_DEBUG` and other env variables // https://tauri.studio/v1/api/config#buildconfig.beforedevcommand envPrefix: ['VITE_', 'TAURI_'], })