Marked as helpful by the asker
The matcher decides where the middleware runs, your if decides what it does. Exclude public paths in both, and always exclude static files:
export const config = { matcher: ["/((?!_next/static|_next/image|favicon.ico|login|auth).*)"] };Also return NextResponse.next() explicitly on the public branch. A missing return in middleware is a silent redirect to nowhere.