From 64d9de205f67fd975a44298bbfebd336f8c42ade Mon Sep 17 00:00:00 2001 From: William Espegren <131612909+WilliamEspegren@users.noreply.github.com> Date: Thu, 1 Aug 2024 16:51:04 +0200 Subject: [PATCH] acknowledge and provide fix for common error (#2924) --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index c5a6c0cb1..32fc23923 100644 --- a/README.md +++ b/README.md @@ -106,6 +106,14 @@ Flowise has 3 different modules in a single mono repository. pnpm build ``` +
+ Exit code 134 (JavaScript heap out of memory) + If you get this error when running the above `build` script, try increasing the Node.js heap size and run the script again: + + export NODE_OPTIONS="--max-old-space-size=4096" + pnpm build +
+ 5. Start the app: ```bash