// Cross-cutting env flags. Backed by the validated `env-schema.ts` (KAR-522
// Source 15) so type and runtime values stay in lock-step. New env vars
// belong in `env-schema.ts`; this file only re-exports the legacy short
// aliases that existing code already imports.
import { env } from "./env-schema"

export const APP_ENV = env.NEXT_PUBLIC_APP_ENV
export const isDev = APP_ENV === "development"
export const isStaging = APP_ENV === "staging"
export const isProd = APP_ENV === "production"
