管理文档版本
Docusaurus 可以管理多个版本的文档。
创建文档版本
发布项目 1.0 版本:
npm run docusaurus docs:version 1.0
docs 文件夹被复制到 versioned_docs/version-1.0 中,并创建 versions.json。
现在,您的文档有 2 个版本:
1.0athttp://localhost:3000/docs/用于版本 1.0 的文档currentathttp://localhost:3000/docs/next/用于即将发布的未发布文档
添加版本下拉菜单
要无缝浏览版本,请添加版本下拉菜单。
修改 docusaurus.config.js 文件:
docusaurus.config.js
export default {
themeConfig: {
navbar: {
items: [
{
type: 'docsVersionDropdown',
},
],
},
},
};
文档版本下拉菜单出现在您的导航栏中:

更新现有版本
可以编辑各自文件夹中的版本化文档:
versioned_docs/version-1.0/hello.md更新http://localhost:3000/docs/hellodocs/hello.md更新http://localhost:3000/docs/next/hello