integrate sentry for error logging

This commit is contained in:
Amruth Pillai
2022-11-24 11:21:30 +01:00
parent 0672988fff
commit be0b7f20f9
19 changed files with 748 additions and 169 deletions

View File

@ -0,0 +1,7 @@
import env from '@beam-australia/react-env';
import * as Sentry from '@sentry/nextjs';
Sentry.init({
dsn: env('CLIENT_SENTRY_DSN'),
tracesSampleRate: 1.0,
});