修改 目录配置,添加存储目录

This commit is contained in:
titor-z 2024-12-19 19:39:05 +08:00
parent 4be063afb1
commit 0b9f464575

View File

@ -12,11 +12,11 @@ export default defineConfig({
], ],
sidebar: { sidebar: {
'/docs/engine': [ '/': [
{ {
text: "引擎", text: "引擎",
link: '/docs/engine/',
items: [ items: [
{ text: '概述', link: '/docs/engine/' },
{ {
text: '安装', text: '安装',
collapsed: true, collapsed: true,
@ -25,6 +25,17 @@ export default defineConfig({
{ text: "Ubuntu", link: '/docs/engine/ubuntu' }, { text: "Ubuntu", link: '/docs/engine/ubuntu' },
{ text: "Debian", link: '/docs/engine/debian' }, { text: "Debian", link: '/docs/engine/debian' },
] ]
},
{
text: '存储',
collapsed: true,
link: '/docs/storage/',
items: [
{ text: "卷", link: '/docs/storage/volume' },
{ text: "绑定挂载", link: '/docs/storage/volume' },
{ text: "tmpfs 挂载", link: '/docs/storage/volume' },
{ text: "存储驱动程序", link: '/docs/storage/volume' },
]
} }
] ]
} }