From 1f8160195aabd57ca5e9951f5f07992bac349867 Mon Sep 17 00:00:00 2001 From: Roman Mazur Date: Mon, 11 May 2026 09:56:00 +0200 Subject: [PATCH] Remove dead sentry.client.config.ts (Sentry is not a dependency) --- sentry.client.config.ts | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 sentry.client.config.ts diff --git a/sentry.client.config.ts b/sentry.client.config.ts deleted file mode 100644 index 09906b0..0000000 --- a/sentry.client.config.ts +++ /dev/null @@ -1,30 +0,0 @@ -// This file configures the initialization of Sentry on the client. -// The config you add here will be used whenever a users loads a page in their browser. -// https://docs.sentry.io/platforms/javascript/guides/nextjs/ - -/* import * as Sentry from '@sentry/nextjs'; -import { isTrackingActive } from '@/app/api/tracking-service'; - -if (isTrackingActive()) { - Sentry.init({ - dsn: process.env.NEXT_PUBLIC_SENTRY_DSN_URL, - // Add optional integrations for additional features - integrations: [ - // eslint-disable-next-line import/namespace - Sentry.replayIntegration({ - maskAllText: false, - blockAllMedia: false - }) - ], - // Define how likely Replay events are sampled. - // 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: 1.0, - - // Define how likely Replay events are sampled when an error occurs. - replaysOnErrorSampleRate: 1.0, - - // Setting this option to true will print useful information to the console while you're setting up Sentry. - debug: false - }); -} */