publicPrefix constant

String const publicPrefix

The prefix designating environment variables that are safe for client-side web exposure.

Variables starting with BLOOM_PUBLIC_ are considered public and safe to embed into browser JavaScript / WebAssembly bundles. All variables lacking this prefix are strictly server-only secrets (e.g. database credentials, API secrets, private keys) and will be rejected by the Bloom build system if targeted for client compilation.

Implementation

static const String publicPrefix = 'BLOOM_PUBLIC_';