chatbot-template/middleware.ts

10 lines
225 B
TypeScript
Raw Normal View History

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