* Sends request data to Profound analytics (fire-and-forget) and returns the response.
(request: NextRequest, response: NextResponse)
| 296 | * Sends request data to Profound analytics (fire-and-forget) and returns the response. |
| 297 | */ |
| 298 | function track(request: NextRequest, response: NextResponse): NextResponse { |
| 299 | sendToProfound(request, response.status) |
| 300 | return response |
| 301 | } |
| 302 | |
| 303 | export const config = { |
| 304 | matcher: [ |
no test coverage detected