All checks were successful
Build & Deploy / 🔍 Prepare Environment (push) Successful in 5s
Build & Deploy / 🧪 QA (push) Successful in 1m23s
Build & Deploy / 🏗️ Build (push) Successful in 2m55s
Build & Deploy / 🚀 Deploy (push) Successful in 18s
Build & Deploy / 🔔 Notifications (push) Successful in 1s
17 lines
511 B
TypeScript
17 lines
511 B
TypeScript
import * as Sentry from "@sentry/nextjs";
|
|
import { config } from "./lib/config";
|
|
|
|
if (config.errors.glitchtip.enabled) {
|
|
console.log("Initializing Sentry in Edge runtime...", {
|
|
environment: config.target || "production",
|
|
});
|
|
Sentry.init({
|
|
dsn: config.errors.glitchtip.dsn,
|
|
tracesSampleRate: 1.0,
|
|
debug: true, // Force debug for now to see why it's failing
|
|
environment: config.target || "production",
|
|
});
|
|
} else {
|
|
console.warn("Sentry is DISABLED in Edge runtime (missing DSN)");
|
|
}
|