mirror of
https://github.com/formbricks/formbricks.git
synced 2026-01-05 13:20:03 -06:00
30 lines
1.2 KiB
TypeScript
30 lines
1.2 KiB
TypeScript
// This file configures the initialization of Sentry for edge features (middleware, edge routes, and so on).
|
|
// The config you add here will be used whenever one of the edge features is loaded.
|
|
// Note that this config is unrelated to the Vercel Edge Runtime and is also required when running locally.
|
|
// 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 edge");
|
|
|
|
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,
|
|
});
|
|
} else {
|
|
logger.warn("Sentry DSN not found, Sentry will be disabled on the edge");
|
|
}
|