10 lines
145 B
JavaScript
10 lines
145 B
JavaScript
|
|
import * as Sentry from '@sentry/nextjs'
|
||
|
|
|
||
|
|
Sentry.init({
|
||
|
|
dsn: process.env.NEXT_PUBLIC_SENTRY_DSN,
|
||
|
|
|
||
|
|
tracesSampleRate: 0.1,
|
||
|
|
|
||
|
|
debug: false,
|
||
|
|
})
|