From 12fb7c54f880bba138ba7d5b7f57ae90c5a9c5b4 Mon Sep 17 00:00:00 2001 From: acazares Date: Wed, 11 Feb 2026 18:23:43 -0600 Subject: [PATCH] Remove proxy configuration from Vite setup --- frontend/vite.config.ts | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/frontend/vite.config.ts b/frontend/vite.config.ts index f77eedd1..a39edb9d 100644 --- a/frontend/vite.config.ts +++ b/frontend/vite.config.ts @@ -10,14 +10,7 @@ export default defineConfig({ allowedHosts: [ 'anexo76-dev.aduanasoft.com', // 'otro-host.com' si necesitas más - ], - proxy: { - '/api': { - target: 'http://backend:8000', - changeOrigin: true, - secure: false, - }, - }, + ], }, plugins: [ tailwindcss(),