1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
| module.exports = { base: '/docs/', dest: 'public/docs', title:'Your App Docs', description:'Your App official documentation', head: [ ['link', { rel: 'icon', href: 'https://yourapp.domain/icon.ico/svg/png/jpg/jxl/etc' }], ], themeConfig: { nav: [ { text: 'Home', link: 'https://yourapp.domain/', target: '_self' }, ], logo: 'https://yourapp.domain/yourappheaderlogo.svg/png/jpg/jpeg/jxl/etc', displayAllHeaders: true, activeHeaderLinks: false, searchPlaceholder: 'Press / to search', lastUpdated: false, sidebar: [ { title: "Getting Started", collapsable: false, children: [ ['/introduction', '介绍'], ['/installation', '安装'], ['/configuration', '配置'], ['/providers', 'Providers'], ], }, { title: "Features", collapsable: false, children: [ ['/features/multiple-users', '多用户'], ['/features/two-factor-authentication','双因子认证'], ['/features/cli','Cli'], ] }, ] } }
|