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