Files
red/teressa-copeland-homes/middleware.ts

10 lines
201 B
TypeScript
Raw 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*"],
};