mirror of
https://github.com/GitbookIO/gitbook.git
synced 2026-09-16 15:45:13 +00:00
11 lines
185 B
TypeScript
11 lines
185 B
TypeScript
import * as Sentry from '@sentry/nextjs';
|
|
|
|
const dsn = process.env.SENTRY_DSN;
|
|
if (dsn) {
|
|
Sentry.init({
|
|
dsn,
|
|
tracesSampleRate: 0.01,
|
|
debug: false,
|
|
});
|
|
}
|