Next.js Discord

Discord Forum

Matcher on Middleware being applied on /

Answered
shadow posted this in #help-forum
Open in Discord
Avatar
Hey devs im trying to make the middleware bypass the root direcory with the matcher but for some reason its still being applied on /

export const config = {
    matcher: [
        '/((?!api|_next/static|_next/image|favicon.ico|^$).*)',
    ],
};
Answered by shadow
Nevermind, i removed the ^.
View full answer

1 Reply

Avatar
Nevermind, i removed the ^.
Answer