From 55b1b75da7d598470cfb5f39cc8cff2a3314a680 Mon Sep 17 00:00:00 2001 From: Alex Nuttall Date: Wed, 22 Jan 2025 10:52:21 +0000 Subject: [PATCH] CCM-5340: remove matcher --- src/middleware.ts | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) 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).*)', +// ], +// };