系统重装或变化后,如何重新配置存在的Hexo博客项目
初始环境搭建
见上一篇:[NodeJS安装]
前提
git仓库里有两个分支,一个是hexo生成页面的分支(master),另一个是你的源文件分支(hexo)。
换了系统
安装hexo:
1 | $ sudo npm install -g hexo |
从git仓库拉取项目,拉取并进入hexo分支:
1 | $ git clone ... |
安装hexo包:
1 | $ npm install |
安装过程中可能出现
- Pre-built binaries not found for fsevents@1.1.3 and node@11.6.0:https://www.alankeene.com/2019/0102/fsevents-didnot-soppurt-node11.html
- node-sass@4.13.0 postinstall:`node scripts/build.js` Failed at the node-sass@4.13.0:https://blog.csdn.net/shine_a/article/details/103133384
修改好后再执行node install
即可。
此时就可以再次正常使用博客了:
1 | $ hexo g |
- 本文链接:http://katherineleeyq.cn/2018/12/06/系统重装或变化后,如何重新配置存在的Hexo博客项目/
- 版权声明:本博客所有文章除特别声明外,均采用 CC BY-NC-SA 3.0 CN 许可协议。转载请注明出处!