mirror of
https://github.com/CompassConnections/Compass.git
synced 2026-03-25 10:02:27 -04:00
36 lines
1.3 KiB
TypeScript
36 lines
1.3 KiB
TypeScript
// This file configures the initialization of Sentry on the client.
|
|
// The added config 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 {SENTRY_DSN} from 'common/hosting/constants'
|
|
|
|
const IS_NATIVE = !!process.env.NEXT_PUBLIC_WEBVIEW
|
|
|
|
Sentry.init({
|
|
// Skip tunneling in native app context
|
|
dsn: SENTRY_DSN,
|
|
|
|
// Add optional integrations for additional features
|
|
integrations: IS_NATIVE ? [] : [Sentry.replayIntegration()],
|
|
|
|
// Define how likely traces are sampled. Adjust this value in production, or use tracesSampler for greater control.
|
|
tracesSampleRate: 0.1,
|
|
// Enable logs to be sent to Sentry
|
|
enableLogs: true,
|
|
|
|
// 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: 0.1,
|
|
|
|
// Define how likely Replay events are sampled when an error occurs.
|
|
replaysOnErrorSampleRate: 1.0,
|
|
|
|
// Enable sending user PII (Personally Identifiable Information)
|
|
// https://docs.sentry.io/platforms/javascript/guides/nextjs/configuration/options/#sendDefaultPii
|
|
sendDefaultPii: true,
|
|
})
|
|
|
|
export const onRouterTransitionStart = Sentry.captureRouterTransitionStart
|