mirror of
https://github.com/prowler-cloud/prowler.git
synced 2026-07-05 11:41:50 +00:00
49309b43d3
Co-authored-by: Pablo F.G <pablo.fernandez@prowler.com> Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com> Co-authored-by: alejandrobailo <alejandrobailo94@gmail.com> Co-authored-by: Alejandro Bailo <59607668+alejandrobailo@users.noreply.github.com>
15 lines
401 B
TypeScript
15 lines
401 B
TypeScript
/**
|
|
* Shared environment helpers.
|
|
*/
|
|
|
|
/**
|
|
* Whether the UI is running inside a Prowler Cloud deployment.
|
|
*
|
|
* `NEXT_PUBLIC_*` vars are statically inlined by Next.js wherever the literal
|
|
* `process.env.NEXT_PUBLIC_IS_CLOUD_ENV` appears in source, so keeping this read
|
|
* inside a helper is safe.
|
|
*/
|
|
export function isCloud(): boolean {
|
|
return process.env.NEXT_PUBLIC_IS_CLOUD_ENV === "true";
|
|
}
|