From dc4712d37159be1587bc0ded67e21b8da7bd617f Mon Sep 17 00:00:00 2001 From: 230417 <230417@epvc.pt> Date: Tue, 20 Jan 2026 16:09:02 +0000 Subject: [PATCH] Add allowed hosts in Vite configuration for enhanced accessibility --- web/vite.config.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/web/vite.config.ts b/web/vite.config.ts index 970c384..023c815 100644 --- a/web/vite.config.ts +++ b/web/vite.config.ts @@ -7,8 +7,10 @@ export default defineConfig({ port: 5173, host: '0.0.0.0', // Permite acesso de outras interfaces strictPort: false, // Tenta outra porta se 5173 estiver ocupada + allowedHosts: ['smartagenda.epvc.pt'], }, }); +