From 006e4a9c7458a6c14d06aadef0ad2a45b2a6b8c9 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:06:02 +0100 Subject: [PATCH] fix: change outdated Next.js config Remove experimental feature "appDir" from starter code, as it is no longer needed when using the App Router See also: #20 --- 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