/// interface ImportMetaEnv { /** * Absolute base for API calls during the build-time prerender (Node has no * relative-URL origin). Unset in the client build so the browser keeps the * same-origin relative `/api/v1` that nginx proxies. See `api/client.ts`. */ readonly VITE_API_BASE?: string; } interface ImportMeta { readonly env: ImportMetaEnv; }