123456789101112131415161718192021222324 |
- import * as Sentry from '@sentry/nextjs'
- Sentry.init({
- dsn: process.env.NEXT_PUBLIC_SENTRY_DSN,
-
- integrations: [new Sentry.Replay()],
-
-
-
- tracesSampleRate: 0.1,
-
-
- replaysSessionSampleRate: 0.1,
- replaysOnErrorSampleRate: 1.0,
-
-
-
-
- })
|