mirror of
https://github.com/xCyanGrizzly/DragonsStash.git
synced 2026-05-11 06:11:15 +00:00
11 lines
252 B
TypeScript
11 lines
252 B
TypeScript
import NextAuth from "next-auth";
|
|
import authConfig from "@/lib/auth.config";
|
|
|
|
const { auth } = NextAuth(authConfig);
|
|
|
|
export default auth;
|
|
|
|
export const config = {
|
|
matcher: ["/((?!_next/static|_next/image|favicon.ico|logo.svg|og-image.png).*)"],
|
|
};
|