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 4af8982 commit dee76f8Copy full SHA for dee76f8
1 file changed
packages/docusaurus/src/ssg/ssgEnv.ts
@@ -34,7 +34,6 @@ export const SSGWorkerThreadTaskSize: number = process.env
34
export const SSGWorkerThreadRecyclerMaxMemory: number | undefined = process.env
35
.DOCUSAURUS_SSG_WORKER_THREAD_RECYCLER_MAX_MEMORY
36
? parseInt(process.env.DOCUSAURUS_SSG_WORKER_THREAD_RECYCLER_MAX_MEMORY, 10)
37
- : // TODO we should probably provide a default value here
38
- // 2gb is a quite reasonable max that should work well even for large sites
39
- // we'd rather ask community feedback first
40
- undefined;
+ : // 1 GB is a quite reasonable max value
+ // It should work well even for large sites
+ 1_000_000_000;
0 commit comments