UNPKG

next-axiom

Version:

Send WebVitals from your Next.js project to Axiom.

10 lines (7 loc) 257 B
import { AxiomRequest, withAxiom } from 'next-axiom'; import { notFound } from 'next/navigation'; export const runtime = 'nodejs'; // test handling NEXT_NOT_FOUND error export const GET = withAxiom(async (req: AxiomRequest) => { return notFound() });