11 lines
310 B
TypeScript
11 lines
310 B
TypeScript
import { NextRequest } from 'next/server';
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
export function middleware(request: NextRequest) {
|
|
|
|
}
|
|
|
|
// only applies this middleware to files in the app directory
|
|
export const config = {
|
|
matcher: '/((?!api|static|favicon.ico|.*\\..*|_next).*)'
|
|
}; |