Next.js Discord

Discord Forum

I need help with my middleware

Unanswered
Cuvier’s Dwarf Caiman posted this in #help-forum
Open in Discord
Cuvier’s Dwarf CaimanOP
Hi guys,
I'm trying to modify my middleware.ts to match /setup and verifyPhone but doesn't seem to work

'/((?!_next/static|_next/image|favicon.ico|.\.(?:svg|png|jpg|jpeg|gif|webp)$).)|/setup|/verifyPhone'

1 Reply

if verifyPhone is a route, then the matcher should be something like this.

export const config = {
  matcher: '/verifyPhone/:path*',
}