acknowledge and provide fix for common error (#2924)

This commit is contained in:
William Espegren 2024-08-01 16:51:04 +02:00 committed by GitHub
parent c103835d49
commit 64d9de205f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 8 additions and 0 deletions

View File

@ -106,6 +106,14 @@ Flowise has 3 different modules in a single mono repository.
pnpm build pnpm build
``` ```
<details>
<summary>Exit code 134 (JavaScript heap out of memory)</summary>
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
</details>
5. Start the app: 5. Start the app:
```bash ```bash