9 lines
292 B
TypeScript
9 lines
292 B
TypeScript
import NextAuth from 'next-auth';
|
|
import { authConfig } from './auth.config';
|
|
|
|
export default NextAuth(authConfig).auth;
|
|
|
|
export const config = {
|
|
// https://nextjs.org/docs/app/api-reference/file-conventions/proxy#matcher
|
|
matcher: ['/((?!api|_next/static|_next/image|.*\\.png$).*)'],
|
|
}; |