From 5dbce1a523a33f77cf7b11ff6203c6053d1db4ea Mon Sep 17 00:00:00 2001 From: Galindo97 Date: Mon, 11 May 2026 10:17:20 -0500 Subject: [PATCH] fix: remove cacheDir from Vite configuration --- backend/pytest.ini | 3 --- frontend/vite.config.ts | 3 +-- 2 files changed, 1 insertion(+), 5 deletions(-) delete mode 100644 backend/pytest.ini diff --git a/backend/pytest.ini b/backend/pytest.ini deleted file mode 100644 index 27eec68e..00000000 --- a/backend/pytest.ini +++ /dev/null @@ -1,3 +0,0 @@ -[pytest] -testpaths = tests -python_files = test_*.py diff --git a/frontend/vite.config.ts b/frontend/vite.config.ts index 6ed0afa2..3c60fcc4 100644 --- a/frontend/vite.config.ts +++ b/frontend/vite.config.ts @@ -37,9 +37,8 @@ const vitestClientProject = { }; export default defineConfig({ - cacheDir: '.vite', server: { - port: 5173, // fija el puerto + port: 5173, // fija el puerto host: true, // escucha en 0.0.0.0 // Lista explĂ­cita + peticiones internas (p. ej. chunks JSON `?import`) pueden usar // Hosts distintos y recibir 403. `true` permite cualquier Host en dev.