11 lines
188 B
TypeScript
11 lines
188 B
TypeScript
import * as Sentry from '@sentry/nextjs';
|
|
|
|
import { env } from './env.js';
|
|
|
|
Sentry.init({
|
|
dsn: env.NEXT_PUBLIC_SENTRY_DSN,
|
|
tracesSampleRate: 1,
|
|
enableLogs: true,
|
|
debug: false,
|
|
});
|