@@ -2,6 +2,14 @@ import * as Sentry from "@sentry/nextjs"; Sentry.init({ dsn: process.env.NEXT_PUBLIC_SENTRY_DSN || '', + integrations: [ + Sentry.replayIntegration({ + maskAllText: false, + blockAllMedia: false, + }) + ], + + // Define how likely traces are sampled. Adjust this value in production, or use tracesSampler for greater control. tracesSampleRate: 1, debug: false, });