enuchi / React-Google-Apps-Script

This is your boilerplate project for developing React apps inside Google Sheets, Docs, Forms and Slides projects. It's perfect for personal projects and for publishing complex add-ons in the Google Workspace Marketplace.
MIT License
1.35k stars 181 forks source link

Javascript heap out of memory #169

Open Raj00377 opened 1 year ago

Raj00377 commented 1 year ago

Anyone faced this issue? Getting FATAL ERROR: Reached heap limit Allocation failed - JavaScript heap out of memory Please refer the attached screenshot

Screenshot from 2023-01-18 12-10-14

HassamSaeed commented 1 year ago

For me running the following command in the terminal resolved the issue: export NODE_OPTIONS="--max-old-space-size=8192"

P.S: I am using bash(Ubuntu)

enuchi commented 1 year ago

Are you running node 18?

Raj00377 commented 1 year ago

Yes, v18.14.2 but the solution given by @HassamSaeed is working fine, but we need to know why its happening

helibom commented 8 months ago

Faced the same issue today on node 20.11.0, but fortunately it was resolved with @HassamSaeed's solution.