From 4d90b4ed78883226c4e7221ade75e2fcaec7e6ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Pedro=20Almeida?= <33964846+Touratica@users.noreply.github.com> Date: Sat, 5 Aug 2023 16:03:46 +0100 Subject: [PATCH] fix: change outdated Next.js config Remove experimental feature "appDir", as it is no longer needed when using the App Router --- next.config.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/next.config.js b/next.config.js index 39656ff8..67346ff9 100644 --- a/next.config.js +++ b/next.config.js @@ -3,9 +3,6 @@ const nextConfig = { images: { domains: ['uploadthing.com', 'lh3.googleusercontent.com'], }, - experimental: { - appDir: true - } } module.exports = nextConfig