learnhouse/apps/web/sentry.server.config.ts
2024-02-09 21:22:15 +01:00

13 lines
437 B
TypeScript

// This file configures the initialization of Sentry on the server.
// The config you add here will be used whenever the server handles a request.
// https://docs.sentry.io/platforms/javascript/guides/nextjs/
import * as Sentry from '@sentry/nextjs'
if (process.env.NODE_ENV !== 'development') {
const DSN = process.env.SENTRY_DSN || process.env.NEXT_PUBLIC_SENTRY_DSN
Sentry.init({
dsn: DSN,
tracesSampleRate: 1.0,
})
}