20 lines
845 B
TypeScript
20 lines
845 B
TypeScript
import * as Sentry from "@sentry/nextjs"
|
|
|
|
import { env } from "./env/client"
|
|
import { denyUrls } from "./sentry.shared.config"
|
|
|
|
Sentry.init({
|
|
dsn: "https://fe39c070b4154e2f9cc35f0e5de0aedb@o4508102497206272.ingest.de.sentry.io/4508102500286544",
|
|
environment: env.NEXT_PUBLIC_SENTRY_ENVIRONMENT,
|
|
enabled: env.NEXT_PUBLIC_SENTRY_ENVIRONMENT !== "development",
|
|
tracesSampleRate: env.NEXT_PUBLIC_SENTRY_CLIENT_SAMPLERATE,
|
|
|
|
// Set profilesSampleRate to 1.0 to profile every transaction.
|
|
// Since profilesSampleRate is relative to tracesSampleRate,
|
|
// the final profiling rate can be computed as tracesSampleRate * profilesSampleRate
|
|
// For example, a tracesSampleRate of 0.5 and profilesSampleRate of 0.5 would
|
|
// result in 25% of transactions being profiled (0.5*0.5=0.25)
|
|
profilesSampleRate: 0.01,
|
|
denyUrls: [...denyUrls],
|
|
})
|