From f600c157b494b02cdf1f125b1f3f746e71fd6d80 Mon Sep 17 00:00:00 2001 From: Iveta Date: Fri, 1 Mar 2024 14:00:39 -0500 Subject: [PATCH] Disable missingSuspenseWithCSRBailout --- next.config.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/next.config.js b/next.config.js index 09bd1a72..d8eba3eb 100644 --- a/next.config.js +++ b/next.config.js @@ -1,6 +1,9 @@ /** @type {import('next').NextConfig} */ const nextConfig = { distDir: "build", + experimental: { + missingSuspenseWithCSRBailout: false, + }, }; module.exports = nextConfig;