diff --git a/src/app/api/sentry-example-api/route.js b/src/app/api/sentry-example-api/route.js deleted file mode 100644 index 80dcc18..0000000 --- a/src/app/api/sentry-example-api/route.js +++ /dev/null @@ -1,7 +0,0 @@ -import { NextResponse } from "next/server"; - -// A faulty API route to test Sentry's error monitoring -export function GET() { - throw new Error("Sentry Example API Route Error"); - return NextResponse.json({ data: "Testing Sentry Error..." }); -}