博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
VuePress 静态网站生成
阅读量:6680 次
发布时间:2019-06-25

本文共 2572 字,大约阅读时间需要 8 分钟。

使用技术:

  • - Vue 驱动的静态网站生成器
仓库地址:

全局安装

## 安装yarn global add vuepress # 或者:npm install -g vuepress

现有项目

如果你想在一个现有项目中使用 VuePress,同时想要在该项目中管理文档,则应该将 VuePress 安装为本地依赖。

## 没有项目可以初始化yarn init## 将 VuePress 作为一个本地依赖安装yarn add -D vuepress # 或者:npm install -D vuepress## 新建一个 docs 文件夹mkdir docs## 新建一个 markdown 文件echo # Hello VuePress! > docs/README.md## 开始写作npx vuepress dev docs

接着,在 package.json 里加一些脚本:

{  "scripts": {    "docs:dev": "vuepress dev docs",    "docs:build": "vuepress build docs"  }}

基本配置

.├─ docs│  ├─ README.md│  └─ .vuepress│     └─ config.js

一个 VuePress 网站必要的配置文件是 .vuepress/config.js,它应该导出一个 JavaScript 对象:

module.exports = {  title: 'Hello VuePress',  description: 'Just playing around'}

静态资源

创建public文件夹,主要用于存放静态资源

.├─ docs│  └─ .vuepress│     └─ public│          └─ image│               └─ favicon.ico

添加网站 favicon,修改 .vuepress/config.js 内容

module.exports = {    head:[        ['link', {rel:'icon', href:'/image/favicon.ico'}]    ]};

导航栏

你可以通过 themeConfig.nav 增加一些导航栏链接:

module.exports = {    themeConfig: {        nav: [            { text: '主页', link: '/' },            { text: '指南', link: '/guide/' },            {                text: '语言',                items: [                    { text: '中文', link: '/language/chinese/' },                    { text: 'English', link: '/language/english/' }                ]            },            { text: 'GitHub', link: 'https://github.com' }        ]    }};

首页

需要在dosc/README.md指定 home: true

---home: trueheroImage: /image/favicon.icoheroText: Hero 标题tagline: Hero 副标题actionText: 快速上手 →actionLink: /guide/features:- title: 简洁至上  details: 以 Markdown 为中心的项目结构,以最少的配置帮助你专注于写作。- title: Vue驱动  details: 享受 Vue + webpack 的开发体验,在 Markdown 中使用 Vue 组件,同时可以使用 Vue 来开发自定义主题。- title: 高性能  details: VuePress 为每个页面预渲染生成静态的 HTML,同时在页面被加载的时候,将作为 SPA 运行。footer: MIT Licensed | Copyright © 2018-present Evan You---

侧边栏

想要使 侧边栏(Sidebar)生效,需要配置 themeConfig.sidebar,基本的配置,需要一个包含了多个链接的数组:

module.exports = {    themeConfig: {        sidebar: [            '/',            ['/hello', 'hello page']        ]    }};

部署

设置部署站点的基础路径。

module.exports = {    base: '/vuepress-demo/',    };

在你的项目中,创建一个如下的 deploy.sh 文件

#!/usr/bin/env bash# 确保脚本抛出遇到的错误set -e# 生成静态文件npm run docs:build# 进入生成的文件夹cd docs/.vuepress/dist# 如果是发布到自定义域名# echo 'www.example.com' > CNAMEgit initgit add -Agit commit -m 'deploy'# 如果发布到 https://
.github.io# git push -f git@github.com:
/
.github.io.git master# 如果发布到 https://
.github.io/
git push -f git@github.com:yinian-R/vuepress-demo.git master:gh-pagescd -

转载地址:http://qlgxo.baihongyu.com/

你可能感兴趣的文章
如何在eclipse里关联查看android源码
查看>>
Scala 深入浅出实战经典 第80讲:List的泛型分析以及::类和Nil对象
查看>>
10.IPSec×××高可用性技术-链路备份
查看>>
我的友情链接
查看>>
destoon 读取当前栏目名称
查看>>
HTC推出革新的HTC旗舰级Android智能手机
查看>>
switch&router-四层模式
查看>>
新博安卓培训的第一天
查看>>
游戏中常用到的碰撞检测帮助类
查看>>
访问默认共享
查看>>
01262015要看的blog——oracle tuning
查看>>
[信息图]电子商务营销的6大步骤
查看>>
Hibernate注释大全收藏
查看>>
通过openfiler模拟存储
查看>>
java学习笔记 --- String类
查看>>
1.5-cut命令
查看>>
我的友情链接
查看>>
从技术角度看人与人的沟通
查看>>
加速sshd
查看>>
15.3、SElinux介绍
查看>>