import { defineConfig } from 'vite'; import react from '@vitejs/plugin-react'; import { fileURLToPath, URL } from 'node:url'; export default defineConfig({ plugins: [react()], css: { // Inline postcss config avoids dynamic package resolution issues postcss: { plugins: [] } }, resolve: { alias: { '@': fileURLToPath(new URL('./src', import.meta.url)) } }, server: { port: 3001, strictPort: true, host: true, open: true } });