From f649f123c6f0751e06d4ad654f590835e6b34b06 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9s=20Gonz=C3=A1lez?= Date: Wed, 24 Apr 2024 13:11:09 +0200 Subject: [PATCH] adds EUDR pages to middleware --- client/src/middleware.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/middleware.ts b/client/src/middleware.ts index 0bf830c2a..882c24b01 100644 --- a/client/src/middleware.ts +++ b/client/src/middleware.ts @@ -1,5 +1,5 @@ export { default } from 'next-auth/middleware'; export const config = { - matcher: ['/data/:path*', '/analysis/:path*', '/profile'], + matcher: ['/data/:path*', '/analysis/:path*', '/eudr/:path*', '/profile'], };