You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- /**
- * 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";
|