From cebc32836b30cd6f4201ff3bc4ecbc9199a801b8 Mon Sep 17 00:00:00 2001 From: Luke Vella Date: Sun, 30 Mar 2025 21:57:57 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=8A=20Enable=20session=20replays?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/web/sentry.client.config.ts | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/apps/web/sentry.client.config.ts b/apps/web/sentry.client.config.ts index 34323247c..40bbfa1fd 100644 --- a/apps/web/sentry.client.config.ts +++ b/apps/web/sentry.client.config.ts @@ -21,11 +21,11 @@ Sentry.init({ replaysSessionSampleRate: 0.1, // You can remove this option if you're not planning to use the Sentry Session Replay feature: - // integrations: [ - // Sentry.replayIntegration({ - // // Additional Replay configuration goes in here, for example: - // maskAllText: true, - // blockAllMedia: true, - // }), - // ], + integrations: [ + Sentry.replayIntegration({ + // Additional Replay configuration goes in here, for example: + maskAllText: true, + blockAllMedia: true, + }), + ], });