From 91867bb718d31a2951064a2167583296c8d036f2 Mon Sep 17 00:00:00 2001 From: Lee Date: Mon, 8 Jul 2024 09:37:33 +0000 Subject: [PATCH] Delete sentry.edge.config.ts --- sentry.edge.config.ts | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 sentry.edge.config.ts diff --git a/sentry.edge.config.ts b/sentry.edge.config.ts deleted file mode 100644 index 3439eb3..0000000 --- a/sentry.edge.config.ts +++ /dev/null @@ -1,16 +0,0 @@ -// 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"; - -Sentry.init({ - dsn: "https://25aaa031240f4d659649d28e0a3fb0cb@glitchtip.fascinated.cc/1", - - // 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, -});