main
ts 6 lines 326 Bytes
Raw
1 export const frontendConfig = {
2 // A relative URL lets one immutable image use the gateway origin in every
3 // environment. Local `next dev` keeps its explicit URL in .env.example.
4 apiBaseUrl: process.env.NEXT_PUBLIC_API_BASE_URL ?? "",
5 authDevLoginEnabled: process.env.NEXT_PUBLIC_AUTH_DEV_LOGIN_ENABLED === "true"
6 };