12 lines
285 B
TypeScript
12 lines
285 B
TypeScript
|
|
import NextAuth from 'next-auth'
|
||
|
|
import { authConfig } from '@/lib/auth.config'
|
||
|
|
|
||
|
|
export default NextAuth(authConfig).auth
|
||
|
|
|
||
|
|
export const config = {
|
||
|
|
matcher: [
|
||
|
|
// Match all paths except static files
|
||
|
|
'/((?!_next/static|_next/image|favicon.ico|images|fonts|api/auth).*)',
|
||
|
|
],
|
||
|
|
}
|