import react from '@vitejs/plugin-react'; import { defineConfig } from 'vite'; export default defineConfig({ plugins: [react()], build: { chunkSizeWarningLimit: 700, }, server: { port: 5173, }, preview: { port: 4173, }, });