Docusaurus 3.8
We are happy to announce Docusaurus 3.8.
This release improves build performance, includes new features and introduces "Future Flags" to prepare your site for Docusaurus 4.
Upgrading is easy. We follow Semantic Versioning, and minor version updates have no breaking changes, accordingly to our release process.
Performance
This release keeps improving our build infrastructure performance with various optimizations, and 2 new Docusaurus Faster options.
Docusaurus Faster
Docusaurus Faster has been introduced in Docusaurus v3.6, and permits you to opt-in for our upgraded build infrastructure and helps you build your site much faster. The experimental flags can be turned on individually, but we recommend to turn them all at once with this convenient shortcut:
const config = {
future: {
experimental_faster: true,
},
};
Don't forget to install the @docusaurus/faster
dependency first!
Persistent Cache
In #10931, we have enabled the Rspack persistent cache. Similarly to the Webpack persistent cache (already supported), it permits to greatly speed up the bundling of the Docusaurus app on subsequent builds.
In practice, your site should build much faster if you run docusaurus build
a second time.
This feature depends on using the Rspack bundler, and can be turned on with the rspackPersistentCache
flag:
const config = {
future: {
experimental_faster: {
rspackBundler: true, // required flag
rspackPersistentCache: true, // new flag
},
},
};
The persistent cache requires preserving the ./node_modules/.cache
folder across builds.
Popular CDNs such as Netlify and Vercel do that for you automatically. Depending on your CI and deployment pipeline, additional configuration can be needed to preserve the cache.
Result: On average, you can expect your site's bundling time to be ~2-5× faster on rebuilds 🔥. The impact can be even more significant if you disable the optional concatenateModule
optimization.
Worker Threads
In #10826, we introduced a Node.js Worker Thread pool to run the static side generation code. With this new strategy, we can better leverage all the available CPUs, reduce static site generation time, and contain potential memory leaks.
This feature can be turned on with the ssgWorkerThreads
flag, and requires the v4.removeLegacyPostBuildHeadAttribute
Future Flag to be turned on:
const config = {
future: {
v4: {
removeLegacyPostBuildHeadAttribute: true, // required
},
experimental_faster: {
ssgWorkerThreads: true,
},
},
};
Result: On average, you can expect your site's static site generation time to be ~2× times faster 🔥. This was measured on a MacBook Pro M3 and result may vary depending on your CI.
Other Optimizations
We identified and resolved several major bottlenecks, including:
- In #11007, we optimized the dev server startup time for macOS users. We figured out that the code to open your browser used expensive synchronous/blocking calls that prevented the bundler from doing its work. From now on, the bundler and the macOS browser opening will run in parallel, leading to a faster
docusaurus start
experience for all macOS users. - In #11163, we noticed that the docs
showLastUpdateAuthor
andshowLastUpdateTime
are quite expensive, and require to run agit log
command for each document. On large sites, running these commands in parallel can exhaust the system and lead to Node.jsEBADF
errors. We implemented a Git command queue to avoid exhausting the system, which also slightly increased performance of our plugin'sloadContent()
lifecycle. - In #10885, we implemented an SVG sprite for the external link icon. Due to its repeated appearance in various places of your site (navbar, footer, sidebars...), using a React SVG component lead to duplicated SVG markup in the final HTML. Using a sprite permits to only embed the icon SVG once, reducing the generated HTML size and the static generation time. We plan to use more SVG sprites in the future.
- In #11176, we fine-tuned the webpack/Rspack configuration to remove useless optimizations.
If bundling time is a concern, consider disabling the optional concatenateModule
bundler optimization. We explain the tradeoffs and how to do it here. It only saves 3% JS, and for a very large site, this change was incredibly impactful: 4x faster on cold builds, x16 faster rebuilds 🔥.
Impact
We have upgraded the React Native website to Docusaurus v3.8 already. Here's an updated benchmark showing the global Docusaurus Faster impact on total build time for a site with ~2000 pages:
ReactNative.dev | Cold Build | Warm Rebuild |
---|---|---|
🐢 Docusaurus Slower | 120s (baseline) | 33s (3.6 × faster) |
⚡️ Docusaurus Faster | 31s (3.8 × faster) | 17s (7 × faster) |
We measured similar results on our website:
Docusaurus.io | Cold Build | Warm Rebuild |
---|---|---|
🐢️ Docusaurus Slower | 146s (baseline) | 45s (3.2 × faster) |
⚡️ Docusaurus Faster | 42s (3.5 × faster) | 24s (6.1 × faster) |
You can also expect memory usage improvements, and a faster docusaurus start
experience.
Future Flags
The Docusaurus v4 Future Flags let you opt-in for upcoming Docusaurus v4 breaking changes, and help you manage them incrementally, one at a time. Enabling all the future flags will make your site easier to upgrade to Docusaurus v4 when it's released.
The concept of Future Flags is not our invention. It has been popularized in the Remix community. You can read more about this gradual feature adoption strategy here:
You can turn all the v4 Future Flags on at once with the following shortcut:
const config = {
future: {
v4: true,
},
};
This way, you are sure to always keep your site prepared for Docusaurus v4. Be aware that we'll introduce more Future Flags in the next minor versions. When upgrading, always read our release blog posts to understand the new breaking changes you opt into.
CSS Cascade Layers
In Docusaurus v4, we plan to leverage CSS Cascade Layers. This modern CSS feature is widely supported and permits to group CSS rules in layers of specificity. It is particularly useful to give you more control over the CSS cascade. It makes the CSS rules less dependent on their insertion order. Your un-layered rules will now always override the layered CSS we provide.
In #11142, we implemented a new experimental @docusaurus/plugin-css-cascade-layers
that you can turn on through the v4.useCssCascadeLayers
flag if you use the classic preset:
export default {
future: {
v4: {
useCssCascadeLayers: true,
},
},
};
We consider this feature as a breaking change because it can slightly alter the CSS rules application order in customized sites. These issues are usually limited, and relatively easy to fix (see for example the React Native CSS changes). Sites that do not provide custom CSS and do not swizzle any component should not be affected.
In practice, it permits to automatically apply built-in CSS Cascade Layers to all the CSS we provide, including our opinionated CSS framework Infima:
@layer docusaurus.infima {
h1 {
/* Infima css rules */
}
pre {
/* Infima css rules */
}
}
Layers can help solves our long-standing Global CSS pollution issue. Our built-in global CSS rules may conflict with yours, making it harder to use Docusaurus to create playgrounds, demos and embedded widgets that are isolated from our CSS. Thankfully, CSS Cascade Layers can be reverted to create HTML subtrees that are not affected by the CSS Docusaurus provides.
Reverting layers
As this issue and this blog post explain, it is possible to revert layers to isolate an HTML subtree from the CSS that comes from that layer.
In practice, you can create a .my-playground
class to revert the global CSS coming from Infima:
/* The "impossible" :not() selector helps increase the specificity */
.my-playground:not(#a#b) {
&,
* {
@layer docusaurus.infima {
all: revert-layer;
}
}
}
Then you can apply this class to any HTML element, so that Infima doesn't apply to any of its children. The HTML subtree becomes isolated from our built-in CSS.
postBuild()
Change
In #10850, we added a new removeLegacyPostBuildHeadAttribute
Future Flag that slightly changes the signature of the postBuild()
plugin lifecycle method, removing the head
attribute.
export default {
future: {
v4: {
removeLegacyPostBuildHeadAttribute: true,
},
},
};
This legacy data structure is coming from our react-helmet-async dependency and should have never been exposed as public API in the first place. It is not serializable, which prevents us from implementing Worker Threads for the static site generation.
While technically a breaking change, we believe this change will not affect anyone. We couldn't find any open source plugin that uses the head
parameter that this method receives. If turning this flag on breaks your site, please let us know here.
System Color Mode
In #10987, the classic theme now lets you revert the color mode to the system/OS value.
Code Block Refactor
In #11058, #11059, #11062 and #11077, the theme code block components have been significantly refactored in a way that should be much easier to swizzle and extend.
According to our release process, this is not a breaking change, but sites that have swizzled these components may need to upgrade them.
번역
- 🇹🇷 #10893: Add missing Turkish theme translations.
- 🇵🇱 #10884: Add missing Polish theme translations.
- 🇨🇳 #10816: Add missing Chinese theme translations.
- 🇯🇵 #11030: Add missing Japanese theme translations.
유지 보수
Docusaurus 3.8 is ready for Node.js 24 and TypeScript 5.8.
We also removed useless npm packages and internalizing unmaintained ones:
- In #11010 and #11014, we internalized the unmaintained
react-ideal-image
andreact-waypoint
package used in@docusaurus/plugin-ideal-image
, and made them compatible with React 19. - In #10956, we removed our dependency to the unmaintained
react-dev-utils
package (from Create-React-App). - In #10358, we replaced the unmaintained
shelljs
package byexeca
- In #11138, we removed the
reading-time
package in favor of the built-inIntl.Segmenter
standard API to compute blog post reading times. - In #11037, we removed the useless
clean-webpack-plugin
.
기타 변경
기타 주목할만한 변경 사항은 다음과 같습니다.
- In #10852, the theme
docsVersionDropdown
navbar item now accepts aversions
attribute. - In #10953, the
@docusaurus/remark-plugin-npm2yarn
plugin now supports Bun tabs conversions by default. - In #10945, more stable CSS classes are now applied to the main theme layout elements, to let you create more reliable CSS selectors.
- In #10846, the Markdown code block
showLineNumbers
metastring can now accept a number to initialize the line counter initial value. - In #11090, we made it easier to provide a custom page title formatter.
- In #11088, the page plugin now supports
frontMatter.slug
like docs and blog plugins already do. - In #10875, the docs versioning CLI now also copies localized docs JSON translation files.
Check the 3.8.0 changelog entry for an exhaustive list of changes.