/// interface ImportMetaEnv { readonly PUBLIC_API_BASE_URL?: string; readonly PUBLIC_ENABLE_REGISTRATION?: string; } interface ImportMeta { readonly env: ImportMetaEnv; } // Runtime operator config injected by /config.js before the app bundle loads // (written from $PUBLIC_API_BASE_URL at container start). See src/config/env.ts. interface Window { __APP_CONFIG__?: { apiBaseUrl?: string; enableRegistration?: boolean; }; }