自主搭建博客 | Hexo + Butterfly 部署到 Cloudflare
为什么要搭博客Notion 里记了不少笔记,但总觉得缺点什么——还是想有个属于自己的小窝,把学习过程记录下来 (´。• ᵕ •。`) 对比了 Hexo 和 Hugo 之后,选择了 Hexo:社区活跃、主题丰富、对新手友好。主题选了 Butterfly,卡片式设计很适合打造二次元风格的博客。部署到 Cloudflare Pages 完全免费,还自带 CDN + HTTPS,简直完美 ( ̄▽ ̄) 本地搭建环境:Windows + WSL2,需要先装好 Node.js(推荐用 nvm)。 1234567# 初始化 Hexomkdir -p ~/projects && cd ~/projectsnpx hexo init my-blog && cd my-blog# 安装 Butterfly 主题git clone -b master https://github.com/jerryc127/hexo-theme-butterfly.git themes/butterflynpm install hexo-renderer-pug hexo-r...
