import { defineConfig } from 'vite' import react from '@vitejs/plugin-react' import tailwindcss from '@tailwindcss/vite' // https://vitejs.dev/config/ export default defineConfig({ plugins: [react(), tailwindcss()], server: { port: 5173, proxy: { '/api/odoo': { target: 'http://localhost:8069', changeOrigin: true, rewrite: (path) => path.replace(/^\/api\/odoo/, ''), }, '/api/wacrm': { target: 'http://localhost:3000', changeOrigin: true, rewrite: (path) => path.replace(/^\/api\/wacrm/, '/api/v1'), }, }, }, build: { outDir: 'dist', sourcemap: false, }, })