// https://docs.sentry.io/platforms/javascript/guides/nextjs/ | |
import * as Sentry from "@sentry/nextjs"; | |
if (process.env.NODE_ENV === "production") { | |
Sentry.init({ | |
dsn: "https://[email protected]/6495191", | |
tracesSampleRate: 0.2, | |
debug: false, | |
release: `${process.env.SENTRY_RELEASE || "production"}`, | |
allowUrls: ["https://jsoncrack.com/editor"], | |
replaysOnErrorSampleRate: 1.0, | |
replaysSessionSampleRate: 0.1, | |
integrations: [ | |
new Sentry.BrowserTracing(), | |
new Sentry.Replay({ | |
maskAllText: true, | |
blockAllMedia: true, | |
}), | |
], | |
}); | |
} | |