(request: NextRequest)
| 2 | import { type NextRequest, NextResponse } from "next/server"; |
| 3 | |
| 4 | export function proxy(request: NextRequest) { |
| 5 | captureRegistryEvent( |
| 6 | request, |
| 7 | process.env.NEXT_PUBLIC_WANDRY_ANALYTICS_TOKEN ?? "" |
| 8 | ); |
| 9 | return NextResponse.next(); |
| 10 | } |
nothing calls this directly
no outgoing calls
no test coverage detected