feat(core): vuepress build env

This commit is contained in:
singcl 2022-09-20 23:53:36 +08:00
parent d4f8e1d0d3
commit 84b66e80f5
5 changed files with 5021 additions and 2 deletions

3
.gitignore vendored
View File

@ -3,3 +3,6 @@ mdbook/
book/
dist
.DS_Store
node_modules
.temp
.cache

6
.vscode/cSpell.json vendored Normal file
View File

@ -0,0 +1,6 @@
{
"words": [
"trpl",
"vuepress"
]
}

4982
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

24
package.json Normal file
View File

@ -0,0 +1,24 @@
{
"name": "trpl-zh-cn",
"version": "1.0.0",
"description": "![Build Status](https://github.com/KaiserY/trpl-zh-cn/workflows/CI/badge.svg)",
"main": "ferris.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"docs:dev": "vuepress dev src",
"docs:build": "vuepress build src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KaiserY/trpl-zh-cn.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/KaiserY/trpl-zh-cn/issues"
},
"homepage": "https://github.com/KaiserY/trpl-zh-cn#readme",
"devDependencies": {
"vuepress": "^2.0.0-beta.51"
}
}

View File

@ -1,9 +1,13 @@
import path from 'path';
// .vuepress/config.js
module.exports = {
export default {
themeConfig: {
sidebar: "auto",
nav: [
{ text: '回首页', link: '/' },
]
}
},
alias: {
'img': path.resolve(__dirname, './../img'),
},
};