// Officer relaxes its guards (origin checks, rate limits, password rules) only when PUBLIC_BUILD_ENV // explicitly asks for it. Anything else — including an unset variable — gets the hardened path, so a // deployment that forgets to set it fails closed rather than silently opening up. const { PUBLIC_BUILD_ENV } = process.env; export const IS_DEV_BUILD = PUBLIC_BUILD_ENV === 'dev' || PUBLIC_BUILD_ENV === 'development';