We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 33f93aa commit 7195b12Copy full SHA for 7195b12
2 files changed
.github/workflows/build-prod.yml
@@ -13,6 +13,7 @@ jobs:
13
ALGOLIA_APPLICATION_ID: ${{ secrets.ALGOLIA_APPLICATION_ID }}
14
ALGOLIA_INDEX_NAME: ${{ secrets.ALGOLIA_INDEX_NAME }}
15
ALGOLIA_SEARCH_API_KEY: ${{ secrets.ALGOLIA_SEARCH_API_KEY }}
16
+ NODE_OPTIONS: --max_old_space_size=8192
17
permissions:
18
contents: read
19
deployments: write
import/build.cjs
@@ -1,7 +1,7 @@
1
// build-wrapper.cjs
2
const { spawn } = require('child_process');
3
4
-const nodeOptions = '--max_old_space_size=4096';
+const nodeOptions = '--max_old_space_size=8192';
5
6
const args = ['build', 'docs'];
7
0 commit comments