danswer/web/sentry.edge.config.ts
2024-10-26 19:06:46 +00:00

12 lines
278 B
TypeScript

import * as Sentry from "@sentry/nextjs";
if (process.env.NEXT_PUBLIC_SENTRY_DSN) {
Sentry.init({
dsn: process.env.NEXT_PUBLIC_SENTRY_DSN,
// Only capture unhandled exceptions
tracesSampleRate: 0,
enableTracing: false,
autoSessionTracking: false,
});
}