How can I adjust Node's memory limit via Meteor? [SOLVED]

Apparently, Node has a default memory limit, but it can be adjusted via the –max_old_space_size option. How can I pass this option to Node via Meteor?

2 Likes

Yeah, I’d like to know that as well.

For completeness, just in case someone finds this thread:

export NODE_OPTIONS="--max_old_space_size=4096

copied from:

3 Likes