add vuepress config, close #427

This commit is contained in:
KaiserY 2020-06-30 16:29:15 +08:00
parent 67a7fccd51
commit f96f669b06
2 changed files with 9 additions and 1 deletions

1
.gitignore vendored
View File

@ -1,6 +1,5 @@
_book/ _book/
mdbook/ mdbook/
book/ book/
**/.vuepress
.DS_Store .DS_Store

9
src/.vuepress/config.js Normal file
View File

@ -0,0 +1,9 @@
// .vuepress/config.js
module.exports = {
themeConfig: {
sidebar: "auto",
nav: [
{ text: '回首页', link: '/' },
]
}
};