/** * Device + printer monitoring: * - Production build: on (matches backend prod profile). * - Local dev: off by default (.env.development). Opt-in: NEXT_PUBLIC_MONITORING_ENABLED=true * and backend fpsms.monitoring.enabled=true. */ export const isMonitoringEnabled = process.env.NODE_ENV === "production" || process.env.NEXT_PUBLIC_MONITORING_ENABLED === "true";