From 8f2b0f6acabc3c664b95d4658a8e53d26d67fee7 Mon Sep 17 00:00:00 2001 From: Alexis Date: Wed, 22 Apr 2026 12:52:32 +0200 Subject: [PATCH] =?UTF-8?q?fix:=20agregar=20configuraci=C3=B3n=20de=20host?= =?UTF-8?q?=20en=20el=20servidor=20de=20Vite?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/vite.config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/vite.config.js b/frontend/vite.config.js index 331270c..db28ef1 100644 --- a/frontend/vite.config.js +++ b/frontend/vite.config.js @@ -9,6 +9,7 @@ export default defineConfig({ tailwindcss(), ], server: { + host: '0.0.0.0', allowedHosts: 'all' } })