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