zl程序教程

您现在的位置是:首页 >  其他

当前栏目

博客搭建系列:day2(用vuepress搭建自己的博客)

博客 系列 搭建 自己 day2
2023-09-27 14:27:10 时间

效果

在这里插入图片描述

摘要

hexo 对不起,我又变卦了,经过我最近几天的资料查找,我发现 hexo 是 jquery 版本的博客搭建,而我是及其痛恨 jquery 的,总是让我想起那个前后端不分离的时代,而 vuepress 则是 vue 版本,虽然说 vuepress 是专门用来写文档的,但是搭建一个博客也是非常的奈斯,这个是我的博客,观众老爷们可以先看看 https://lvan-zhang.github.io
我使用的是 vuepress 配合一个大佬写的主题,具体可看https://vuepress-theme-reco.recoluan.com/,结合而成!

具体实现

# init
npx @vuepress-reco/theme-cli init my-blog

# install
cd my-blog
yarn install

# run
npm run dev

# build
npm run build

好了,完事了,具体的配置去看大佬的文档和 vuepress 的文档。