import { defineConfig } from 'vite'; import react from '@vitejs/plugin-react'; import tailwindcss from '@tailwindcss/vite'; export default defineConfig({ plugins: [react(), tailwindcss()], build: { outDir: 'dist', sourcemap: false, }, server: { port: 5174, proxy: { '/api': { target: 'http://localhost:3012', changeOrigin: true, }, }, }, });