Files

10 lines
219 B
TypeScript
Raw Permalink Normal View History

import NextAuth from "next-auth";
import { authConfig } from "@/lib/auth.config";
const { auth } = NextAuth(authConfig);
export default auth;
export const config = {
matcher: ["/agent/:path*", "/portal/:path*"],
};