Set memory heap to 4gb to account for large vaults

This commit is contained in:
Ole Eskild Steensen 2022-04-20 13:24:28 +02:00
parent ce3cbedd2e
commit 1c7882d6bc

View File

@ -7,7 +7,7 @@
"start": "npm-run-all build:sass --parallel watch:*",
"watch:sass": "sass --watch src/site/styles:dist/styles",
"watch:eleventy": "cross-env ELEVENTY_ENV=dev eleventy --serve",
"build:eleventy": "cross-env ELEVENTY_ENV=prod eleventy",
"build:eleventy": "cross-env ELEVENTY_ENV=prod NODE_OPTIONS=--max-old-space-size=4096 eleventy",
"build:sass": "sass src/site/styles:dist/styles",
"build": "npm-run-all build:*"
},