import { defineConfig } from "vite"; import react from "@vitejs/plugin-react"; export default defineConfig({ plugins: [react()], css: { lightningcss: { errorRecovery: true } }, server: { port: 5180 }, });