mirror of
https://github.com/formbricks/formbricks.git
synced 2025-12-30 10:19:51 -06:00
37 lines
1.1 KiB
TypeScript
37 lines
1.1 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 { SENTRY_DSN } from "@/lib/constants";
|
|
import * as Sentry from "@sentry/nextjs";
|
|
import { logger } from "@formbricks/logger";
|
|
|
|
if (SENTRY_DSN) {
|
|
logger.info("Sentry DSN found, enabling Sentry on the server");
|
|
|
|
Sentry.init({
|
|
dsn: SENTRY_DSN,
|
|
|
|
// Adjust this value in production, or use tracesSampler for greater control
|
|
tracesSampleRate: 1,
|
|
|
|
// Setting this option to true will print useful information to the console while you're setting up Sentry.
|
|
debug: 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");
|
|
}
|