import * as Sentry from "@sentry/nextjs"; if (process.env.NEXT_PUBLIC_SENTRY_DSN) { Sentry.init({ dsn: process.env.NEXT_PUBLIC_SENTRY_DSN, // Only capture unhandled exceptions enableTracing: false, integrations: [], tracesSampleRate: 0, replaysSessionSampleRate: 0, replaysOnErrorSampleRate: 0, autoSessionTracking: false, }); }