mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-26 08:25:21 -04:00
9 lines
266 B
TypeScript
9 lines
266 B
TypeScript
import * as Sentry from "@sentry/nextjs";
|
|
|
|
Sentry.init({
|
|
dsn: process.env.NEXT_PUBLIC_SENTRY_DSN,
|
|
environment: process.env.NEXT_PUBLIC_VERCEL_ENV,
|
|
integrations: [Sentry.browserTracingIntegration(), Sentry.httpClientIntegration()],
|
|
tracesSampleRate: 1.0,
|
|
});
|