- API: add @sentry/nestjs with instrument.ts, SentryModule, and SentryGlobalFilter - Web: add @sentry/nextjs with client/server/edge configs, instrumentation hook - Update next.config.js with withSentryConfig wrapper - Replace TODO in error.tsx with Sentry.captureException - Add SENTRY_DSN, SENTRY_AUTH_TOKEN, SENTRY_ORG, SENTRY_PROJECT to .env.example Co-Authored-By: Paperclip <noreply@paperclip.ing>
9 lines
266 B
TypeScript
9 lines
266 B
TypeScript
import * as Sentry from '@sentry/nextjs';
|
|
|
|
Sentry.init({
|
|
dsn: process.env['SENTRY_DSN'],
|
|
environment: process.env['NODE_ENV'] ?? 'development',
|
|
tracesSampleRate: process.env['NODE_ENV'] === 'production' ? 0.2 : 1.0,
|
|
enabled: !!process.env['SENTRY_DSN'],
|
|
});
|