2026-03-19 14:08:04 -06:00
|
|
|
import NextAuth from "next-auth";
|
|
|
|
|
import { authConfig } from "@/lib/auth.config";
|
2026-03-19 13:33:15 -06:00
|
|
|
|
2026-03-19 14:08:04 -06:00
|
|
|
const { auth } = NextAuth(authConfig);
|
|
|
|
|
export default auth;
|
2026-03-19 13:33:15 -06:00
|
|
|
|
|
|
|
|
export const config = {
|
2026-03-19 16:17:59 -06:00
|
|
|
matcher: ["/agent/:path*", "/portal/:path*"],
|
2026-03-19 13:33:15 -06:00
|
|
|
};
|