1234567891011121314151617181920212223 |
- import * as Sentry from '@sentry/nextjs'
- Sentry.init({
- dsn: 'https://6bf48a450f054d749398c02a61bae343@o4505264807215104.ingest.sentry.io/4505264809115648',
-
- integrations: [new Sentry.Replay()],
-
-
-
- tracesSampleRate: 1.0,
-
-
- replaysSessionSampleRate: 0.1,
- replaysOnErrorSampleRate: 1.0,
-
-
-
-
- })
|