module.exports = { title: '结算系统接口文档', description: '结算系统的所有接口', port: 8105, themeConfig: { //displayAllHeaders: true, nav: [ { text: '首页', link: '/' }, { text: '结算系统后台接口', link: '/backendApi/' }, { text: '结算系统前台接口', link: '/frontendApi/' }, ], sidebar: { '/backendApi/': [ '', '1_base', '2_shop', '3_user', '4_finance', ], '/frontendApi/': [ '', '1_base', '2_user', '3_bonus', '4_finance', '5_article', '6_message', '7_config', '8_shop', ], '/': [ '', ], }, }, markdown: { lineNumbers: true, toc: { includeLevel: [1, 2, 3] } } }