(key: string)
| 4 | * For local development, run `vercel env pull .env.development.local` to populate environment variables. |
| 5 | */ |
| 6 | export function getEnvVariable(key: string): string { |
| 7 | return process.env[key] || ''; |
| 8 | } |
| 9 | |
| 10 | // Next.js inlines NEXT_PUBLIC_* at build time. Fail loudly when required |
| 11 | // environment variables are missing so misconfiguration surfaces at startup. |
no outgoing calls
no test coverage detected