欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

使用vuepress搭建静态博客的示例代码

程序员文章站 2022-06-11 18:11:21
什么是vuepress vuepress是以vue驱动的主题系统的简约静态网站生成工具(拥有自己的默认主题)。 veupress由vue,vue-router,we...

什么是vuepress

vuepress是以vue驱动的主题系统的简约静态网站生成工具(拥有自己的默认主题)。

veupress由vue,vue-router,webpack驱动的单页面应用,每个markdonw文件都使用markdonw-it编译为html文件,然后作为vue组件的模板来处理。


vuepress仓库
项目地址

vuepress 有很多优点:

  • 界面简洁优雅(个人感觉比 hexo 好看)
  • 容易上手(半小时能搭好整个项目)
  • 更好的兼容、扩展 markdown 语法
  • 响应式布局,pc端、手机端
  • google analytics 集成
  • 支持 pwa

安装vuepress

全局安装

在此方式中,只是要项目根目录创建了一个readme.md文件,直接执行访问的就是此文件

npm install -g vuepress

# 创建一个 markdown 文件
echo '# hello vuepress' > readme.md

# 开始编写文档
vuepress dev

# 构建
vuepress build

在已有项目中安装

# 安装为本地依赖项
npm install -d vuepress

# 创建一个 docs 目录
mkdir docs
# 创建一个 markdown 文件
echo '# hello vuepress' > docs/readme.md

# 开始编写文档
npx vuepress dev docs

还可以在package.json中添加js脚本,官网方式不好写,我们直接用常用的方式

{
 "scripts": {
  "start": "vuepress dev docs",//运行
  "build": "vuepress build docs"//打包
 }
}

使用vuepress搭建静态博客

接下来就是配置了,我会直接把我的配置文件贴上来,我们先看结构

博客结构

博客结构分为主页,导航栏,侧边栏

在.docs目录下新建一个.vuepress文件,在此注意,搭建博客过程中所有的配置文件以及内容文件、主题等都放在此目录中
在.vuepress文件夹下新建三个文件,public用来放图片等静态文件,theme中放到博客用到的主题,config.js中存放所有的配置

.vuepress
 ---public
 ---theme
 ---config.js

在.docs文件夹下新建几个模块文件夹,比如我的就分为学习笔记、问题记录、关于我等,每个文件夹下再新建md文件

vuepress会自动把readme.md设置为导航的主页,所以如果我们需要主页就先建readme.md,再新建first.md,seconde.md等文件作为侧边栏要显示的文件

.docs
 ---.vuepress
 ---about
  ---readme.md
  ---first.md
  ---seconde.md
 ---study
 ---problem

具体配置

最重要的config.js配置

在此值得注意的是,主题配置不只是简单的样式配置等,其中包括导航与侧边栏部分的配置,此处配置参见官网导航栏”默认主题配置“

module.exports = {
 //网站标题
 title: '霍梦林的个人博客',
 // 主页描述
 description: 'just playing around',
 // 要部署的仓库名字
 base: '/',
 dest: './docs/.vuepress/dist',
 // 主题配置
 themeconfig: {
  // 导航配置
  nav: [
   // text为导航栏显示文字,link为路径,即文件夹名字,注意不要丢了名字前后的'/'
   {text: 'home', link: '/'},
   {text: 'about', link: '/about/'},
   {text: 'problem', link: '/problem/'},
   {text: 'study', link: '/study/'},
   {text: 'csdn', link: 'http://blog.csdn.net/weixin_38318244/'},
   {text: 'github', link: 'https://github.com/momo-0902'}
  ],
  // 侧边栏配置,侧边栏组,不同(导航)页面对应不同的侧边栏
  // 以对象形式配置,前边的key为nav处的路径,后边提供一个数组作为此侧边栏中的子标题
  sidebar: {
   '/problem/': [
    // ''空字符串代表主页,显示readme.md中的内容
    '',
    ['201709', '201709'],//使用数组为侧边栏起别名,前边是md名称,后边是链接显示的文字
    ['201710', '201710'],
    ],
   '/study/': [
    '',
    ['axios', '1.axios'],
    ['document', '2.document'],
    ]
  },
  // 这是嵌套标题链接,自动显示当前激活(导航)页面标题的链接,即显示深度(h1-h6的深度)
  sidebardepth: 1
 }
}

网站主页配置,即.docs下readme.md的配置

---
// 使用默认主题
home: true 
// 主页头像
heroimage: /me.jpg
// '开始学习'快捷按钮
actiontext: get started →
// 快捷按钮跳转路径
actionlink: /about/
features:
- title: simplicity first
 details: minimal setup with markdown-centered project structure helps you focus on writing.
- title: vue-powered
 details: enjoy the dev experience of vue + webpack, use vue components in markdown, and develop custom themes with vue.
- title: performant
 details: vuepress generates pre-rendered static html for each page, and runs as an spa once a page is loaded.
footer: mit licensed | copyright © 2018-present momo
---

[[toc]]

:tada: :100:

啦啦啦德玛西亚

啦啦啦啦撸啊撸啊

<!-- ![aaa](~@alias/me.jpg) -->

这里使用了 markdown 的拓展 `[[toc]]`

## 这里是momo的博客
### 项目中遇到的问题
### 学习笔记
### csdn
### github

[关于我](/about/)

theme主题配置

项目中只是把vuepress所有的主题配置都拷贝到了本项目中,项目结构如下:

theme
 ---styles
  ---theme.styl
  ---code.styl

 ---home.vue
 ---layout.vue

 ---until.js

打包部署

构建

// 此处构建生成路径为./docs/.vuepress/dist,由config.js中配置: dest: ‘./docs/.vuepress/dist', 
vuepress build docs

导航到构建输出目录

// config.js中dest配置的输出目录是哪此处就cd进入哪,所有的git操作(包含初始,添加,提交等)都在此目录下 
cd docs/.vuepress/dist

git init 
git add -a 
git commit -m ‘deploy'

推到你的仓库

如果是部署到<username>.github.io的主页上

git push origin master

这时可能出现问题

fatal: ‘origin' does not appear to be a git repository

以及fatal: could not read from remote repository.

解决办法: 执行git remote add origin git@github.com:<username>/<repo>.git

如果是部署到分支上

git push -f git@github.com:<username>/<repo>.git master:gh-pages

(git push -f git@github.com:momo-0902/wiki.git master:gh-pages)

可在package.json中配置脚本运行

npm start 运行项目

npm run build 打包

npm run deploy 部署

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。