module.exports = { title: 'BDTP-数据服务', description: 'Just playing around', plugins: ['@vuepress/back-to-top'], themeConfig: { nav: [ { text: '主页', link: '/' }, { text: '通用说明文档', link: '/utils/common' }, { text: '物理世界', link: '/rwd/' }, { text: '知识库', link: '/dic/' }, { text: '版本管理', link: '/version/' }, { text: '文件服务', link: '/file/' } ], sidebarDepth: 2, displayAllHeaders: true, sidebar: { '/utils/common': [ { title: '通用说明文档', collapsable: false, children: [{ title: '通用说明文档', path: '/utils/common' }] } ], '/dic': [ { title: '知识库接口文档', collapsable: false, children: [{ title: '接口文档', path: '/dic/dic_api' }] }, { title: '知识库数据结构说明', collapsable: false, children: [{ title: '数据结构说明', path: '/dic/data_structure_description' }] } ], '/rwd': [ { title: '物理世界接口文档', collapsable: false, children: [{ title: '接口文档', path: '/rwd/rwd_api' }] }, { title: '物理世界数据结构说明', collapsable: false, children: [{ title: '数据结构说明', path: '/rwd/data_structure_description' }] } ], '/version': [ { title: '版本管理接口文档', collapsable: false, children: [{ title: '接口文档', path: '/version/version_api' }] }, { title: '版本管理数据结构说明', collapsable: false, children: [{ title: '数据结构说明', path: '/version/data_structure_description' }] } ], '/file': [ { title: '文件服务接口文档', collapsable: false, children: [{ title: '接口文档', path: '/file/file_api' }] }, { title: '文件服务数据结构说明', collapsable: false, children: [{ title: '数据结构说明', path: '/file/data_structure_description' }] } ], } } }