first
This commit is contained in:
parent
4696855e63
commit
9b4b551b83
|
|
@ -9,3 +9,14 @@ docs/_book
|
||||||
# TODO: where does this rule come from?
|
# TODO: where does this rule come from?
|
||||||
test/
|
test/
|
||||||
|
|
||||||
|
.DS_Store
|
||||||
|
.idea
|
||||||
|
node_modules/
|
||||||
|
.env.json
|
||||||
|
dist/
|
||||||
|
dist.crx
|
||||||
|
dist.pem
|
||||||
|
npm-debug.log*
|
||||||
|
yarn-debug.log*
|
||||||
|
yarn-error.log*
|
||||||
|
yarn.lock
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,32 @@
|
||||||
|
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
|
||||||
|
}
|
||||||
|
}
|
||||||
Binary file not shown.
|
After Width: | Height: | Size: 94 KiB |
File diff suppressed because it is too large
Load Diff
|
|
@ -0,0 +1,16 @@
|
||||||
|
{
|
||||||
|
"name": "blog",
|
||||||
|
"version": "1.0.0",
|
||||||
|
"description": "",
|
||||||
|
"main": "index.js",
|
||||||
|
"scripts": {
|
||||||
|
"docs:dev": "vuepress dev docs",
|
||||||
|
"docs:build": "vuepress build docs"
|
||||||
|
},
|
||||||
|
"keywords": [],
|
||||||
|
"author": "",
|
||||||
|
"license": "ISC",
|
||||||
|
"devDependencies": {
|
||||||
|
"vuepress-theme-reco": "^1.6.10"
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue