From d7b83d22cee3d20db564cc0564d42802b02327e3 Mon Sep 17 00:00:00 2001 From: Danshil Kokil Mungur Date: Sat, 11 Feb 2023 13:36:31 +0400 Subject: [PATCH] fix(build): increase threshold for amount of data to be fetched when SSR'ing (#3320) Co-authored-by: Ryan Cohen --- next.config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/next.config.js b/next.config.js index b0e872e8..9cd65f97 100644 --- a/next.config.js +++ b/next.config.js @@ -19,5 +19,6 @@ module.exports = { }, experimental: { scrollRestoration: true, + largePageDataBytes: 256000, }, };