In the package.json the start option:
NODE_OPTIONS="--max_old_space_size=400"
Specifies a "--max_old_space_size=400" which is only compatible with linux and macos.
Option to resolve:
- create a
start:prod option with this setting allowing start to not include this option
- use
cross-env to automatically be cross platform
- remove
max_old_space_size in general
In the
package.jsonthestartoption:Specifies a
"--max_old_space_size=400"which is only compatible with linux and macos.Option to resolve:
start:prodoption with this setting allowingstartto not include this optioncross-envto automatically be cross platformmax_old_space_sizein general