From 9dbd7a060ad3d932e269f75f41fc7bf2544443c6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=8F=91=E9=9C=89=E7=9A=84=E7=83=82=E5=8E=98=E5=AD=90?= Date: Sun, 22 Mar 2020 22:27:22 +0800 Subject: [PATCH] Add files via upload --- config.js | 57 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 config.js diff --git a/config.js b/config.js new file mode 100644 index 0000000..9bed21d --- /dev/null +++ b/config.js @@ -0,0 +1,57 @@ +module.exports = { + title: 'test', + description: 'test', + base: '/', //项目文件夹设置目录 + plugins: [ + // https://vuepress.github.io/zh/plugins 插件下载 + ['@vuepress/plugin-back-to-top'],//安装不了插件,建议非全局安装vue + ['copyright', { + noSelect: true, + authorName:{ + "zh-CN": "hoochanlon" + } + }] + ], + themeConfig: { + repo: 'https://github.com/hoochanlon/OA-QNA', + nav: [{ text: '跳转首页', link: '/' }], + sidebar: [ + { + title: 'OA办公', // 必要的 + collapsable: false, // 可选的, 默认值是 true, + sidebarDepth: 1, // 可选的, 默认值是 1 + children: [['/oa-fault/oa','OA办公故障问题']] + }, + { + title: 'OA网络', // 必要的 + collapsable: false, // 可选的, 默认值是 true, + sidebarDepth: 1, // 可选的, 默认值是 1 + children: [['/net-debug/net','OA网络环境维护']] + }, + { + title: '软件故障', // 必要的 + collapsable: false, // 可选的, 默认值是 true, + sidebarDepth: 1, // 可选的, 默认值是 1 + children: [['/software-issue/other','办公软件使用异常']] + }, + { + title: '办公硬件', // 必要的 + collapsable: false, // 可选的, 默认值是 true, + sidebarDepth: 1, // 可选的, 默认值是 1 + children: [['/hard-bearkdown/hard','硬件调试处理']] + }, + { + title: '注意事项', // 必要的 + collapsable: false, // 可选的, 默认值是 true, + sidebarDepth: 1, // 可选的, 默认值是 1 + children: [['notice','维护细节注意说明']] + }, + { + title: '致谢', // 必要的 + collapsable: false, // 可选的, 默认值是 true, + sidebarDepth: 1, // 可选的, 默认值是 1 + children: [['thanks','感谢有你们在!']] + } + ] + } + } \ No newline at end of file