chore: remove example sentry page

This commit is contained in:
Aslam H
2024-09-10 18:48:17 +07:00
parent 2ff509e05a
commit 7f2b594cb3
2 changed files with 0 additions and 91 deletions

View File

@@ -1,9 +0,0 @@
import { NextResponse } from "next/server"
export const dynamic = "force-dynamic"
// 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..." })
}