T
Typebot•11mo ago
Patrick Torres

Fatal Error - Javascript out of memory

I'm getting this error, does someone know how to fix it?
No description
2 Replies
naman
naman•11mo ago
This error typically occurs when the application consumes more memory than is available. You can try running the application with the --max-old-space-size flag to increase the heap size. By the way, what exactly are you trying to do? Maybe I could help with it.😃
Gabriel Pavão
Gabriel Pavão•11mo ago
To increase the heap size you can run the following when running your application locally: NODE_OPTIONS="--max-old-space-size=4096" pnpm dev

Did you find this page helpful?