mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2025-04-06 11:48:03 +08:00
feat(core): vuepress build env
This commit is contained in:
parent
d4f8e1d0d3
commit
84b66e80f5
3
.gitignore
vendored
3
.gitignore
vendored
@ -3,3 +3,6 @@ mdbook/
|
||||
book/
|
||||
dist
|
||||
.DS_Store
|
||||
node_modules
|
||||
.temp
|
||||
.cache
|
||||
|
6
.vscode/cSpell.json
vendored
Normal file
6
.vscode/cSpell.json
vendored
Normal file
@ -0,0 +1,6 @@
|
||||
{
|
||||
"words": [
|
||||
"trpl",
|
||||
"vuepress"
|
||||
]
|
||||
}
|
4982
package-lock.json
generated
Normal file
4982
package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load Diff
24
package.json
Normal file
24
package.json
Normal file
@ -0,0 +1,24 @@
|
||||
{
|
||||
"name": "trpl-zh-cn",
|
||||
"version": "1.0.0",
|
||||
"description": "",
|
||||
"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"
|
||||
}
|
||||
}
|
@ -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'),
|
||||
},
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user