website/blog/releases/3.8/index.mdx
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.
import BrowserWindow from '@site/src/components/BrowserWindow';
import IframeWindow from '@site/src/components/BrowserWindow/IframeWindow';
import NavbarColorModeToggle from '@theme/Navbar/ColorModeToggle';
This release keeps improving our build infrastructure performance with various optimizations, and 2 new Docusaurus Faster options.
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: {
// highlight-next-line
experimental_faster: true,
},
};
:::tip
Don't forget to install the @docusaurus/faster dependency first!
:::
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: {
// highlight-start
rspackBundler: true, // required flag
rspackPersistentCache: true, // new flag
// highlight-end
},
},
};
:::caution Preserving the cache
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.
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: {
// highlight-next-line
removeLegacyPostBuildHeadAttribute: true, // required
},
experimental_faster: {
// highlight-next-line
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.
We identified and resolved several major bottlenecks, including:
docusaurus start experience for all macOS users.showLastUpdateAuthor and showLastUpdateTime are quite expensive, and require to run a git log command for each document. On large sites, running these commands in parallel can exhaust the system and lead to Node.js EBADF errors. We implemented a Git command queue to avoid exhausting the system, which also slightly increased performance of our plugin's loadContent() lifecycle.:::tip
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 🔥.
:::
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.
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.
:::info not invented here
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:
:::
:::tip Turn all the v4 future flags on
You can turn all the v4 Future Flags on at once with the following shortcut:
const config = {
future: {
// highlight-next-line
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.
:::
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: {
// highlight-next-line
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.
<details> <summary>Reverting layers</summary>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.
<IframeWindow url="/tests/pages/style-isolation?docusaurus-data-navbar=false" />
postBuild() ChangeIn #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: {
// highlight-next-line
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.
In #10987, the classic theme now lets you revert the color mode to the system/OS value.
<BrowserWindow>
<div
className="margin-vert--md"
style={{display: 'flex', justifyContent: 'center'}}>
<NavbarColorModeToggle />
</div>
</BrowserWindow>
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.
Docusaurus 3.8 is ready for Node.js 24 and TypeScript 5.8.
We also removed useless npm packages and internalizing unmaintained ones:
react-ideal-image and react-waypoint package used in @docusaurus/plugin-ideal-image, and made them compatible with React 19.react-dev-utils package (from Create-React-App).shelljs package by execareading-time package in favor of the built-in Intl.Segmenter standard API to compute blog post reading times.clean-webpack-plugin.Other notable changes include:
docsVersionDropdown navbar item now accepts a versions attribute.@docusaurus/remark-plugin-npm2yarn plugin now supports Bun tabs conversions by default.showLineNumbers metastring can now accept a number to initialize the line counter initial value.frontMatter.slug like docs and blog plugins already do.Check the 3.8.0 changelog entry for an exhaustive list of changes.