Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

sentry.server.config.js 279B

12345678910
  1. import * as Sentry from '@sentry/nextjs'
  2. Sentry.init({
  3. dsn: process.env.NEXT_PUBLIC_SENTRY_DSN,
  4. // Set tracesSampleRate to 1.0 to capture 100%
  5. // of transactions for performance monitoring.
  6. // We recommend adjusting this value in production
  7. tracesSampleRate: 0.1,
  8. })