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.
38 lines
940 B
38 lines
940 B
// import { DefaultTheme } from 'vitepress'
|
|
|
|
export default {
|
|
'/server/': [
|
|
{
|
|
text: '服务器集合',
|
|
// collapsed: false,
|
|
items: [
|
|
{text: '全服务器信息', link: '/server/full-server-list'},
|
|
{text: 'AG服务安装', link: '/server/server-ag-setup'}
|
|
]
|
|
}
|
|
],
|
|
'/project/': {
|
|
text: '项目集合',
|
|
items: [
|
|
{ text: '文档列表', link: '/project/' }
|
|
]
|
|
},
|
|
// {
|
|
// text: '服务器配置',
|
|
// items: [
|
|
// { text: '服务器部署', link: '/servers/' }
|
|
// ]
|
|
// },
|
|
// {
|
|
// text: '项目管理',
|
|
// items: [
|
|
// { text: '版本计划', link: '/management/' }
|
|
// ]
|
|
// },
|
|
// {
|
|
// text: '额外文档',
|
|
// items: [
|
|
// { text: '笔记', link: '/extras/' }
|
|
// ]
|
|
// }
|
|
}
|
|
|