From 3af4405fcc7680e1d1d26b3fb3add7903a988587 Mon Sep 17 00:00:00 2001 From: Liam Date: Tue, 24 Oct 2023 12:16:39 +0100 Subject: [PATCH] remove replays - it's not needed --- sentry.client.config.ts | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/sentry.client.config.ts b/sentry.client.config.ts index 4a001ac..33c1d4c 100644 --- a/sentry.client.config.ts +++ b/sentry.client.config.ts @@ -12,19 +12,4 @@ Sentry.init({ // Setting this option to true will print useful information to the console while you're setting up Sentry. debug: false, - - replaysOnErrorSampleRate: 1.0, - - // This sets the sample rate to be 10%. You may want this to be 100% while - // in development and sample at a lower rate in production - replaysSessionSampleRate: 0.1, - - // You can remove this option if you're not planning to use the Sentry Session Replay feature: - integrations: [ - new Sentry.Replay({ - // Additional Replay configuration goes in here, for example: - maskAllText: true, - blockAllMedia: true, - }), - ], });