This commit is contained in:
xCyanGrizzly
2026-02-18 14:26:36 +01:00
commit 3a5726e82b
167 changed files with 104081 additions and 0 deletions

10
middleware.ts Normal file
View File

@@ -0,0 +1,10 @@
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).*)"],
};