UNPKG

create-aelf-dapp

Version:

Create aelf Dapp based on Next.js with one command

10 lines (7 loc) 286 B
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...' }); }