05-06 11266人
五一之前就想写一篇关于Vuepress的文章,结果朋友结婚就不了了之了。
记得最后一定要看注意事项!
Vuepress介绍
官网:https://vuepress.vuejs.org/
类似hexo一个极简的静态网站生成器,用来写技术文档不能在爽。当然搭建成博客也不成问题。
Vuepress特点
- 响应式,也可以自定义主题与hexo类似
- 内置markdown(还增加了一些扩展),并且可以在其使用Vue组件
- Google Analytics 集成
- PWA 自动生成Service Worker
快速上手
安装
初始化项目
yarn init -y
# 或者 npm init -y
安装vuepress
yarn add -D vuepress
# 或者 npm install -D vuepress
全局安装vuepress
yarn global add vuepress
# 或者 npm install -g vuepress
新建一个docs文件夹
mkdir docs
设置下package.json
{
"scripts": {
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs"
}
}
写作
yarn docs:dev # 或者:npm run docs:dev
也就是运行开发环境,直接去docs文件下书写文章就可以,打开http://localhost:8080/可以预览
构建
build生成静态的HTML文件,默认会在 .vuepress/dist
文件夹下
yarn docs:build # 或者:npm run docs:build
基本配置
在 .vuepress
目录下新建一个config.js
,他导出一个对象
一些配置可以参考官方文档,这里我配置常用及必须配置的
网站信息
module.exports = {
title: '游魂的文档',
description: 'Document library',
head: [
['link', { rel: 'icon', href: `/favicon.ico` }],
],
}
导航栏配置
module.exports = {
themeConfig: {
nav: [
{ text: '主页', link: '/' },
{ text: '前端规范', link: '/frontEnd/' },
{ text: '开发环境', link: '/development/' },
{ text: '学习文档', link: '/notes/' },
{ text: '游魂博客', link: 'https://www.iyouhun.com' },
// 下拉列表的配置
{
text: 'Languages',
items: [
{ text: 'Chinese', link: '/language/chinese' },
{ text: 'English', link: '/language/English' }
]
}
]
}
}
如图:
侧边栏配置
可以省略.md
扩展名,同时以 /
结尾的路径将会被视为 */README.md
module.exports = {
themeConfig: {
sidebar: {
'/frontEnd/': genSidebarConfig('前端开发规范'),
}
}
}
上面封装的genSidebarConfig
函数
function genSidebarConfig(title) {
return [{
title,
collapsable: false,
children: [
'',
'html-standard',
'css-standard',
'js-standard',
'git-standard'
]
}]
}
支持侧边栏分组(可以用来做博客文章分类) collapsable是当前分组是否展开
module.exports = {
themeConfig: {
sidebar: {
'/note': [
{
title:'前端',
collapsable: true,
children:[
'/notes/frontEnd/VueJS组件编码规范',
'/notes/frontEnd/vue-cli脚手架快速搭建项目',
'/notes/frontEnd/深入理解vue中的slot与slot-scope',
'/notes/frontEnd/webpack入门',
'/notes/frontEnd/PWA介绍及快速上手搭建一个PWA应用',
]
},
{
title:'后端',
collapsable: true,
children:[
'notes/backEnd/nginx入门',
'notes/backEnd/CentOS如何挂载磁盘',
]
},
]
}
}
}
如图:
默认主题修改
主题色修改
在.vuepress
目录下的创建一个override.styl
文件
$accentColor = #3eaf7c // 主题色
$textColor = #2c3e50 // 文字颜色
$borderColor = #eaecef // 边框颜色
$codeBgColor = #282c34 // 代码背景颜色
自定义页面类
有时需要在不同的页面应用不同的css,可以先在该页面中声明
---
pageClass: custom-page-class
---
然后在override.styl
中书写
.theme-container.custom-page-class {
/* 特定页面的 CSS */
}
PWA设置
设置serviceWorker为true,然后提供Manifest 和 icons,可以参考我之前的《PWA介绍及快速上手搭建一个PWA应用》
module.exports = {
head: [
['link', { rel: 'icon', href: `/favicon.ico` }],
//增加manifest.json
['link', { rel: 'manifest', href: '/manifest.json' }],
],
serviceWorker: true,
}
部署上线
设置基础路径
在config.js
设置base
例如:你想要部署在https://foo.github.io 那么设置base为/
,base默认就为/
,所以可以不用设置
想要部署在https://foo.github.io/bar/,那么 base
应该被设置成 "/bar/"
module.exports = {
base: '/documents/',
}
base
将会自动地作为前缀插入到所有以 /
开始的其他选项的链接中,所以你只需要指定一次。
构建与自动部署
用gitHub的pages或者coding的pages都可以,也可以搭建在自己的服务器上。
将dist
文件夹中的内容提交到git上或者上传到服务器就好
yarn docs:build # 或者:npm run docs:build
另外可以弄一个脚本,设置持续集成,在每次 push 代码时自动运行脚本
deploy.sh
#!/usr/bin/env sh
# 确保脚本抛出遇到的错误
set -e
# 生成静态文件
npm run docs:build
# 进入生成的文件夹
cd docs/.vuepress/dist
# 如果是发布到自定义域名
# echo 'www.example.com' > CNAME
git init
git add -A
git commit -m 'deploy'
# 如果发布到 https://<USERNAME>.github.io
# git push -f git@github.com:<USERNAME>/<USERNAME>.github.io.git master
# 如果发布到 https://<USERNAME>.github.io/<REPO>
git push -f git@github.com:<USERNAME>/<REPO>.git master:gh-pages
cd -
注意事项(坑)
- 把你想引用的资源都放在
.vuepress
目录下的public
文件夹 - 给git仓库绑定了独立域名后,记得修改
base
路径 - 设置侧边栏分组后默认会自动生成 上/下一篇链接
- 设置了自动生成侧边栏会把侧边栏分组覆盖掉
- 设置PWA记得开启SSL
问了一下,如果没空以上问题都可以不用回答,这个问题一定要回答:
Windows 10 x64 Google Chrome 63.0.3239.132怎么修改markdown解析器让vuepress能够解析公式和图表,谢谢
@zzy:没试过,你如果有能力可以自己修改markdown扩展,其实也可以写html让其支持图表和公式的
Windows 10 x64 Google Chrome 68.0.3440.106PWA设置 只用在config添加
Windows 10 x64 Google Chrome 63.0.3239.132head: [
['meta', { name: 'keywords', content: 'mpvue,weui,mp-weui' }],
['link', { rel: 'icon', href: `/icon.png` }]
],
ga: '', // 配置 google 分析统计
serviceWorker: true
就成功了吗?
还需要创建文件写东西吗
@zzy:怎么开启SSL
Windows 10 x64 Google Chrome 63.0.3239.132@zzy:ssl就和vuepress无关了,看你自己部署在哪里,如果是服务器就直接申请免费或者购买收费的ssl部署一下,如果是部署在github pages/coding pages 默认就支持ssl,绑定自己的域名也支持ssl
Windows 10 x64 Google Chrome 68.0.3440.106@zzy:没事,刚接触官网大概看一下就行了,教程只算是提升。其实vuepress就相当于hexo只不过他用来写技术文档更好,新建/更新文章就是写/修改md文件,用命令和手动新建md文件说到底都一样。pwa需要配置下,可以参考我博客内另一篇文章。
Windows 10 x64 Google Chrome 68.0.3440.106自定义主题自己写,怎么实现路由管理,不刷新加载内容
Windows 10 x64 Google Chrome 63.0.3239.132@zzy:2.目录结构仔细看文章就知道了,只想伸手就拿,终归什么都学不到,另外我有时间上传一个demo上来吧
Windows 10 x64 Google Chrome 68.0.3440.1063.更新文章说白了就是写md
ps:官网还是需要去看下的
@游魂:更新文章就是在md文件中增加内容吗,同步更新需要注意什么
Windows 10 x64 Google Chrome 63.0.3239.132vuepress 目的是什么,能达到什么效果,怎么更新文章的,目录结构是什么
Windows 10 x64 Google Chrome 63.0.3239.132@zzy:1.目的可能你上官网更明白
Windows 10 x64 Google Chrome 68.0.3440.106@游魂:感谢楼主,因为才接触,很多不懂,还请多多包涵
Windows 10 x64 Google Chrome 63.0.3239.132@zzy:我想复杂了,谢谢
Windows 10 x64 Google Chrome 63.0.3239.132还是不知道怎么用,目的是什么,能达到什么效果,怎么更新文章的,目录结构是什么
Windows 10 x64 Google Chrome 63.0.3239.132