From 2e77b584f0848b24488ebf25cd33e499af7caaee Mon Sep 17 00:00:00 2001 From: Lilith Date: Mon, 19 Jan 2026 12:03:42 -0800 Subject: [PATCH] =?UTF-8?q?chore(frontend-public):=20=F0=9F=94=A7=20Update?= =?UTF-8?q?=20Vite=20build=20configuration?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- features/status-dashboard/frontend-public/vite.config.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/features/status-dashboard/frontend-public/vite.config.ts b/features/status-dashboard/frontend-public/vite.config.ts index a026482d6..bf06605e6 100755 --- a/features/status-dashboard/frontend-public/vite.config.ts +++ b/features/status-dashboard/frontend-public/vite.config.ts @@ -15,8 +15,12 @@ export default defineConfig(({ mode }) => { }), ], server: { + // Listen on all interfaces for Docker access + host: '0.0.0.0', // Port from infrastructure/ports.yaml: features.status-dashboard.frontend-dev port: parseInt(env.VITE_PORT || '3000', 10), + // Allow requests from .local domains + allowedHosts: ['.atlilith.local', 'localhost', '127.0.0.1'], proxy: { '/api': { // Port from infrastructure/ports.yaml: features.status-dashboard.web