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>
8 lines
192 B
TypeScript
8 lines
192 B
TypeScript
import * as Sentry from "@sentry/nextjs";
|
|
|
|
Sentry.init({
|
|
dsn: process.env.NEXT_PUBLIC_SENTRY_DSN,
|
|
tracesSampleRate: process.env.NODE_ENV === "development" ? 1.0 : 0.1,
|
|
debug: false,
|
|
});
|