This commit is contained in:
2026-05-11 18:28:23 +03:00
parent a50e525de1
commit 0298a73e8d
16 changed files with 10735 additions and 17 deletions
+9
View File
@@ -0,0 +1,9 @@
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$).*)'],
};