chatbot-template/middleware.ts
2024-10-11 18:00:22 +05:30

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"],
};