From d756551bb9cdea0603a5c7dd54a6da067b517cbd Mon Sep 17 00:00:00 2001 From: Diljit VJ Date: Mon, 6 Jan 2025 14:46:23 +0530 Subject: [PATCH] chore: increase craco --max-old-space-size to 10240 --- app/client/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/client/build.sh b/app/client/build.sh index 146c6d355f0c..c42a32a0c366 100755 --- a/app/client/build.sh +++ b/app/client/build.sh @@ -18,6 +18,6 @@ export REACT_APP_SENTRY_RELEASE=$GIT_SHA export REACT_APP_CLIENT_LOG_LEVEL=ERROR # Disable CRA built-in ESLint checks since we have our own config and a separate step for this export DISABLE_ESLINT_PLUGIN=true -craco --max-old-space-size=7168 build --config craco.build.config.js +craco --max-old-space-size=10240 build --config craco.build.config.js echo "build finished"