chatbot-template/middleware.ts
2024-11-14 12:16:05 -05:00

9 lines
225 B
TypeScript

import NextAuth from 'next-auth';
import { authConfig } from '@/app/(auth)/auth.config';
export default NextAuth(authConfig).auth;
export const config = {
matcher: ['/', '/:id', '/api/:path*', '/login', '/register'],
};