From 893d3af6cbedc3dcbd5573f7094c225efbfaff7c Mon Sep 17 00:00:00 2001 From: zaidmukaddam Date: Wed, 18 Sep 2024 00:58:43 +0530 Subject: [PATCH] chore: Update next.config.mjs with experimental flag --- next.config.mjs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/next.config.mjs b/next.config.mjs index 00d6a30..cd6a25f 100644 --- a/next.config.mjs +++ b/next.config.mjs @@ -50,7 +50,10 @@ const nextConfig = { pathname: '**' }, ] - } + }, + experimental: { + missingSuspenseWithCSRBailout: false, + }, }; export default nextConfig;