module.exports = { title: 'AngesZhuの窝窝', // 设置网站标题 description: '做一些沉淀和分享', base: '/', locales: { '/': { lang: 'zh-CN' } }, theme: 'reco', themeConfig: { logo: '/logo.png', nav: [ {text: '主页', link: '/', icon: 'reco-home'}, {text: '编程语言', link: '/code', icon: 'reco-date'}, {text: '自动化测试', link: '/auto', icon: 'reco-tag'}, {text: '测试开发', link: '/testdev', icon: 'reco-other'}, {text: '质量体系', link: '/quality', icon: 'reco-blog'}, {text: '关于', link: '/about', icon: 'reco-account'}, ], sidebar: { '/': [ "/src", //指的是根目录的md文件 也就是 README.md 里面的内容 "/srccode", //根目录创建 apiword.md文件 "/srcauto",//根目录创建 api.md文件 "/srctestdev", //根目录创建 error.md文件 "/srcquality" //根目录创建 error.md文件 ] }, sidebarDepth: 2 } }