File size: 324 Bytes
0702eb8
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
export { default } from "next-auth/middleware"

// export const config = {
//   matcher: ['/((?!api|_next/static|_next/image|favicon.ico).*)']
// }

// Ensure auth is required for all except the following paths
export const config = {
    matcher: ['/((?!api/auth|_next/static|_next/image|favicon.ico|about|sign-in).+)']
};