mirror of
https://github.com/vercel/next-learn.git
synced 2026-06-30 08:04:23 +00:00
8 lines
126 B
TypeScript
8 lines
126 B
TypeScript
import { auth } from './auth';
|
|
|
|
export const middleware = auth;
|
|
|
|
export const config = {
|
|
matcher: ['/dashboard/:path*'],
|
|
};
|