diff --git a/src/middleware.ts b/src/middleware.ts index 0fc2695..447d470 100644 --- a/src/middleware.ts +++ b/src/middleware.ts @@ -23,14 +23,14 @@ export function middleware(request: NextRequest) { return response; } -export const config = { - matcher: [ - /* - * Match all request paths except for the ones starting with: - * - _next/static (static files) - * - _next/image (image optimization files) - * - favicon.ico (favicon file) - */ - '/((?!_next/static|_next/image|favicon.ico).*)', - ], -}; +// export const config = { +// matcher: [ +// /* +// * Match all request paths except for the ones starting with: +// * - _next/static (static files) +// * - _next/image (image optimization files) +// * - favicon.ico (favicon file) +// */ +// '/((?!_next/static|_next/image|favicon.ico).*)', +// ], +// };