import { defineConfig } from 'vite' import react from '@vitejs/plugin-react' // https://vite.dev/config/ export default defineConfig({ plugins: [react()], server: { proxy: { // Cuando el frontend pida "/api", Vite lo redirigirĂ¡ al backend '/api': { target: 'http://localhost:5036', changeOrigin: true, secure: false, } } } })