静态网站框架 VuePress
1. 搭建项目
$npm init$npm i vuepress --save--dev{
"scripts": {
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs"
}
}module.expost = {
// 配置内容
title: 'xxxxxx文档',
description: 'Just playing around',
themeConfig: {
}
}2. 自定义主题
最后更新于