This commit is contained in:
limeng 2022-01-06 18:42:31 +08:00
parent 4696855e63
commit 9b4b551b83
10 changed files with 2157 additions and 0 deletions

11
.gitignore vendored
View File

@ -9,3 +9,14 @@ docs/_book
# TODO: where does this rule come from?
test/
.DS_Store
.idea
node_modules/
.env.json
dist/
dist.crx
dist.pem
npm-debug.log*
yarn-debug.log*
yarn-error.log*
yarn.lock

32
docs/.vuepress/config.js Normal file
View File

@ -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

0
docs/README.md Normal file
View File

0
docs/auto.md Normal file
View File

0
docs/code.md Normal file
View File

0
docs/quality.md Normal file
View File

0
docs/testdev.md Normal file
View File

2098
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

16
package.json Normal file
View File

@ -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"
}
}