跳到主要内容
版本:Canary 🚧

升级 Docusaurus

Docusaurus 的版本号是基于 major.minor.patch 方案,并遵从语义化版本规范。

破坏性更改只在主版本号(major)升级时发布,并在以下升级指南中详细记录。

Troubleshooting upgrades

When upgrading Docusaurus you may experience issues caused by mismatching cached dependencies - there are a few troubleshooting steps you should perform to resolve these common issues before reporting a bug or seeking support.

Run the clear command

This CLI command is used to clear a Docusaurus site's generated assets, caches and build artifacts.

npm run clear

Remove node_modules and your lock file(s)

Remove the node_modules folder and your package manager's lock file using the following:

rm -rf node_modules yarn.lock package-lock.json

Then reinstall packages and regenerate the lock file using:

npm install