You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
|
|
const sidebars = {
|
|
docs: [
|
|
{
|
|
type: 'doc',
|
|
id: 'intro',
|
|
label: '介绍'
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: '通知',
|
|
items: [
|
|
'通知/通知简介',
|
|
'通知/通知设置',
|
|
'通知/PDF编译器',
|
|
'通知/富文本编辑器'
|
|
]
|
|
}
|
|
]
|
|
};
|
|
|
|
module.exports = sidebars;
|