next-learn
next-learn copied to clipboard
chapter 15, how to change the matcher
I hope to not protect the / and /dashboard, but protect the /protected and keep the login and logout. It should change the follow: matcher: ['/((?!api|_next/static|_next/image|.\.png$).)'], as I hope to demo the basic function and not login at first.
``import NextAuth from 'next-auth'; import { authConfig } from './auth.config';
export default NextAuth(authConfig).auth;
export const config = { // https://nextjs.org/docs/app/building-your-application/routing/middleware#matcher matcher: ['/((?!api|_next/static|_next/image|.\.png$).)'], };
Hey @liwenz, so I understand, were you trying to protect other routes?