import { defineConfig } from 'vite' import react from '@vitejs/plugin-react' import tailwindcss from '@tailwindcss/vite' export default defineConfig({ plugins: [react(), tailwindcss()], base: '/app/', server: { port: 5173, proxy: { '/api': { target: 'http://192.168.1.247:3000', changeOrigin: true } } }, build: { outDir: 'dist', sourcemap: false, chunkSizeWarningLimit: 900 } })