From 36dba0624a1d7e2cce99c25504c254ad436db75f Mon Sep 17 00:00:00 2001 From: Nick Oates Date: Thu, 4 May 2023 20:59:20 -0700 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Opt-out=20of=20appDir?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Workaround for https://github.com/vercel/next.js/issues/49261 --- next.config.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/next.config.js b/next.config.js index 3521677..1c1fed3 100644 --- a/next.config.js +++ b/next.config.js @@ -6,4 +6,7 @@ module.exports = withContentlayer({ images: { deviceSizes: [320, 448, 640, 768, 896], }, + experimental: { + appDir: false, + }, });