From 8cbe95c5c8458d5ba3bbcd26e764ae9f9d4b7291 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bal=C3=A1zs=20Orb=C3=A1n?= Date: Tue, 24 Oct 2023 13:08:26 -0700 Subject: [PATCH] update --- dashboard/15-final/app/api/auth/[...nextauth]/route.ts | 1 - dashboard/15-final/middleware.ts | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) delete mode 100644 dashboard/15-final/app/api/auth/[...nextauth]/route.ts diff --git a/dashboard/15-final/app/api/auth/[...nextauth]/route.ts b/dashboard/15-final/app/api/auth/[...nextauth]/route.ts deleted file mode 100644 index fae4907..0000000 --- a/dashboard/15-final/app/api/auth/[...nextauth]/route.ts +++ /dev/null @@ -1 +0,0 @@ -export { GET, POST } from '@/auth'; diff --git a/dashboard/15-final/middleware.ts b/dashboard/15-final/middleware.ts index 4596922..4af93a6 100644 --- a/dashboard/15-final/middleware.ts +++ b/dashboard/15-final/middleware.ts @@ -1,5 +1,5 @@ export { auth as middleware } from './auth'; export const config = { - matcher: ['/((?!api|_next/static|_next/image|favicon.ico).*)'], + matcher: ['/((?!_next/static|_next/image|favicon.ico).*)'], };