Files
next-learn/dashboard/final-example/middleware.ts
Delba de Oliveira d554062ebc Just playing around
2023-11-17 13:37:24 +00:00

10 lines
279 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: ['/login', '/dashboard/:path*'],
};