nextjs middleware
Maestro2496
Posted on June 23, 2022
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 () => {
})
}
💖 💪 🙅 🚩
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
webdev Understanding HTTP, Cookies, Email Protocols, and DNS: A Guide to Key Internet Technologies
November 30, 2024