chatbot-template/middleware.ts

9 lines
208 B
TypeScript
Raw Normal View History

2024-03-14 20:00:52 +03:00
import NextAuth from 'next-auth'
import { authConfig } from './auth.config'
export default NextAuth(authConfig).auth
2023-06-22 10:37:35 -07:00
export const config = {
2024-03-14 20:00:52 +03:00
matcher: ['/((?!api|_next/static|_next/image|.*\\.png$).*)']
2023-06-22 10:37:35 -07:00
}