Add sentry stuff

This commit is contained in:
2026-01-13 15:56:34 -06:00
parent c4d78428e6
commit 4bdbb3feb1
5 changed files with 128 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
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,
});