Duplicate starter

This commit is contained in:
Delba de Oliveira
2023-10-26 08:37:00 -07:00
parent 9044c85918
commit 0574e4f210
66 changed files with 2937 additions and 0 deletions

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/building-your-application/routing/middleware#matcher
matcher: ['/((?!api|_next/static|_next/image|.png).*)'],
};