chatbot-template/middleware.ts

10 lines
225 B
TypeScript
Raw Normal View History

2024-11-14 12:16:05 -05:00
import NextAuth from 'next-auth';
2024-03-14 20:00:52 +03:00
2024-11-14 12:16:05 -05:00
import { authConfig } from '@/app/(auth)/auth.config';
2024-10-11 18:00:22 +05:30
export default NextAuth(authConfig).auth;
2023-06-22 10:37:35 -07:00
export const config = {
2024-11-14 12:16:05 -05:00
matcher: ['/', '/:id', '/api/:path*', '/login', '/register'],
2024-10-11 18:00:22 +05:30
};