Files
KAFM-Project/middleware.ts

11 lines
176 B
TypeScript

import { withAuth } from "next-auth/middleware"
export default withAuth({
pages: {
signIn: "/login",
},
})
export const config = {
matcher: ["/dashboard/:path*"],
}