nextjs middleware

maestro2496

Maestro2496

Posted on June 23, 2022

nextjs middleware

Does anyone has a example of the waitUntil() methods, in nextjs middleware? Mine is not working..

export async function middleware(req: NextRequest, ev: any) {
  const { pathname } = req.nextUrl

  if (pathname) {
    return NextResponse.next()
  }

  ev.waitUntil(async () => {


  })
}
Enter fullscreen mode Exit fullscreen mode
💖 💪 🙅 🚩
maestro2496
Maestro2496

Posted on June 23, 2022

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related