Files
codeboard/apps/web/sentry.server.config.ts
Vectry 9a51856896
All checks were successful
Deploy CodeBoard / deploy (push) Successful in 3m13s
feat: add GlitchTip error monitoring integration
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-Claude)

Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
2026-02-11 01:35:05 +00:00

8 lines
218 B
TypeScript

import * as Sentry from "@sentry/nextjs";
Sentry.init({
dsn: process.env.SENTRY_DSN || process.env.NEXT_PUBLIC_SENTRY_DSN,
tracesSampleRate: process.env.NODE_ENV === "development" ? 1.0 : 0.1,
debug: false,
});