You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
WebVitalsInit.tsx and webVitalsReporter.ts send Core Web Vitals to an analytics endpoint in all environments, including local development, polluting analytics data.
Acceptance Criteria
Reporting is gated behind process.env.NODE_ENV === 'production'.
The endpoint URL is read from an environment variable (NEXT_PUBLIC_ANALYTICS_ENDPOINT).
A missing endpoint in development logs a console warning instead of silently failing.
Description
WebVitalsInit.tsxandwebVitalsReporter.tssend Core Web Vitals to an analytics endpoint in all environments, including local development, polluting analytics data.Acceptance Criteria
process.env.NODE_ENV === 'production'.NEXT_PUBLIC_ANALYTICS_ENDPOINT).