diff --git a/apps/web/sentry.edge.config.ts b/apps/web/sentry.edge.config.ts index cb0ff5c3b5..842f09fccc 100644 --- a/apps/web/sentry.edge.config.ts +++ b/apps/web/sentry.edge.config.ts @@ -1 +1,5 @@ -export {}; +import * as Sentry from "@sentry/nextjs"; + +Sentry.init({ + dsn: process.env.NEXT_PUBLIC_SENTRY_DSN, +});