Files

9 lines
164 B
TypeScript
Raw Permalink Normal View History

2024-06-24 23:32:34 +05:30
import { env } from "@/env";
2024-06-19 07:41:01 +05:45
import * as Sentry from "@sentry/nextjs";
Sentry.init({
2024-06-24 23:32:34 +05:30
dsn: env.NEXT_PUBLIC_SENTRY_DSN,
2024-06-19 07:41:01 +05:45
tracesSampleRate: 1,
debug: false,
});