mirror of
https://github.com/formbricks/formbricks.git
synced 2025-12-30 18:30:32 -06:00
43 lines
1.4 KiB
TypeScript
43 lines
1.4 KiB
TypeScript
// This file configures the initialization of Sentry on the server.
|
|
// The config you add here will be used whenever the server handles a request.
|
|
// https://docs.sentry.io/platforms/javascript/guides/nextjs/
|
|
import * as Sentry from "@sentry/nextjs";
|
|
import { logger } from "@formbricks/logger";
|
|
import { SENTRY_DSN, SENTRY_ENVIRONMENT, SENTRY_RELEASE } from "@/lib/constants";
|
|
|
|
if (SENTRY_DSN) {
|
|
logger.info("Sentry DSN found, enabling Sentry on the server");
|
|
|
|
Sentry.init({
|
|
dsn: SENTRY_DSN,
|
|
release: SENTRY_RELEASE,
|
|
environment: SENTRY_ENVIRONMENT,
|
|
|
|
// No tracing while Sentry doesn't update to telemetry 2.0.0 - https://github.com/getsentry/sentry-javascript/issues/15737
|
|
tracesSampleRate: 0,
|
|
|
|
// Setting this option to true will print useful information to the console while you're setting up Sentry.
|
|
debug: false,
|
|
|
|
// Disable telemetry and additional data collection
|
|
sendDefaultPii: false,
|
|
sendClientReports: false,
|
|
|
|
// uncomment the line below to enable Spotlight (https://spotlightjs.com)
|
|
// spotlight: process.env.NODE_ENV === 'development',
|
|
|
|
beforeSend(event, hint) {
|
|
const error = hint.originalException as Error;
|
|
|
|
// @ts-expect-error
|
|
if (error && error.digest === "NEXT_NOT_FOUND") {
|
|
return null;
|
|
}
|
|
|
|
return event;
|
|
},
|
|
});
|
|
} else {
|
|
logger.warn("Sentry DSN not found, Sentry will be disabled on the server");
|
|
}
|