From f9363208761115212314a3ea8a0a68f1a638f412 Mon Sep 17 00:00:00 2001 From: Florian Forster Date: Wed, 6 Aug 2025 16:28:03 -0700 Subject: [PATCH] test --- docs/docusaurus.config.js | 6 +++--- docs/package.json | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/docusaurus.config.js b/docs/docusaurus.config.js index 05374fac5a..9e1f0a7901 100644 --- a/docs/docusaurus.config.js +++ b/docs/docusaurus.config.js @@ -460,14 +460,14 @@ module.exports = { '@docusaurus/theme-mermaid', ], future: { - v4: false, // Disabled because of some problems related to https://github.com/facebook/docusaurus/issues/11040 + v4: true, // Disabled because of some problems related to https://github.com/facebook/docusaurus/issues/11040 experimental_faster: { - swcJsLoader: false, // Disabled because of memory usage > 8GB which is a problem on vercel default runners + swcJsLoader: true, // Disabled because of memory usage > 8GB which is a problem on vercel default runners swcJsMinimizer: true, swcHtmlMinimizer: true, lightningCssMinimizer: true, mdxCrossCompilerCache: true, - ssgWorkerThreads: false, // Disabled because of some problems related to https://github.com/facebook/docusaurus/issues/11040 + ssgWorkerThreads: true, // Disabled because of some problems related to https://github.com/facebook/docusaurus/issues/11040 rspackBundler: true, rspackPersistentCache: true, }, diff --git a/docs/package.json b/docs/package.json index 34648555a7..23298f3497 100644 --- a/docs/package.json +++ b/docs/package.json @@ -4,7 +4,7 @@ "scripts": { "docusaurus": "docusaurus", "dev": "docusaurus start --port 3003 --host 0.0.0.0", - "build": "export DOCUSAURUS_PERF_LOGGER=true && NODE_OPTIONS=--stack-size=10000 && docusaurus build", + "build": "export DOCUSAURUS_PERF_LOGGER=true && export NODE_OPTIONS=--max-old-space-size=8096 && docusaurus build", "swizzle": "docusaurus swizzle", "deploy": "docusaurus deploy", "clear": "docusaurus clear",