feat: add GlitchTip error monitoring integration
All checks were successful
Deploy CodeBoard / deploy (push) Successful in 3m13s

Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-Claude)

Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
This commit is contained in:
Vectry
2026-02-11 01:35:05 +00:00
parent 77a45f1479
commit 9a51856896
7 changed files with 44 additions and 1 deletions

View File

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