sentry.server.config.ts 669 B

12345678910111213141516171819
  1. import * as Sentry from '@sentry/nuxt'
  2. Sentry.init({
  3. dsn: 'https://5a42d73350e084df0891c0c7e0e5ba3a@o4510503923220480.ingest.us.sentry.io/4510503931346944',
  4. // We recommend adjusting this value in production, or using tracesSampler
  5. // for finer control
  6. tracesSampleRate: 1.0,
  7. // Enable logs to be sent to Sentry
  8. enableLogs: true,
  9. // Enable sending of user PII (Personally Identifiable Information)
  10. // https://docs.sentry.io/platforms/javascript/guides/nuxt/configuration/options/#sendDefaultPii
  11. sendDefaultPii: true,
  12. // Setting this option to true will print useful information to the console while you're setting up Sentry.
  13. debug: false,
  14. })