mirror of
https://github.com/BradNut/nextjs-dashboard
synced 2025-09-08 17:40:30 +00:00
10 lines
292 B
TypeScript
10 lines
292 B
TypeScript
|
|
import NextAuth from "next-auth";
|
||
|
|
import { authConfig } from "./auth.config";
|
||
|
|
|
||
|
|
export default NextAuth(authConfig).auth;
|
||
|
|
|
||
|
|
export const config = {
|
||
|
|
// https://nextjs.org/docs/app/building-your-application/routing/middleware#matcher
|
||
|
|
matcher: ["/((?!api|_next/static|_next/image|.png).*)"],
|
||
|
|
};
|