You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
324 B
11 lines
324 B
2 months ago
|
#!/usr/bin/env bash
|
||
|
|
||
|
# This script sets the node `--max-old-space-size` to 8192 if it is not set already.
|
||
|
# All existing `NODE_OPTIONS` are retained as is.
|
||
|
|
||
|
export NODE_OPTIONS="${NODE_OPTIONS:-}"
|
||
|
|
||
|
if [[ $NODE_OPTIONS != *"--max-old-space-size"* ]]; then
|
||
|
export NODE_OPTIONS="${NODE_OPTIONS} --max-old-space-size=8192"
|
||
|
fi
|