We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad400e2 commit 33121cdCopy full SHA for 33121cd
scripts/generate-md-exports.mjs
@@ -38,7 +38,7 @@ async function createWork() {
38
// Putting 4 as the minimum as Vercel has 4 cores per builder and it may help
39
// us cut down some of the time there.
40
// Source: https://vercel.com/docs/limits#build-container-resources
41
- const numWorkers = Math.max(Math.floor(cpus().length / 2), 4);
+ const numWorkers = Math.max(Math.floor(cpus().length / 2), 2);
42
const workerTasks = new Array(numWorkers).fill(null).map(() => []);
43
44
console.log(`🔎 Discovering files to convert...`);
0 commit comments