Hexo升级后遇到的几个问题
HEXO升级到3+以后,不可避免的带来了一些坑。
hexo Deployer not found: github 是什么情况
执行hexo deploy
时,提示ERROR Deployer not found: github
解决方案:
在version 3中的配置文件__config.yml,需要将type: github修改为type: git
然后执行命令:npm install hexo-deployer-git --save
无法生成feed.xml和sitemap.xml
解决方案:1
2npm install hexo-generator-feed --save
npm install hexo-generator-sitemap --save
然后在__config.yml配置文件中追加信息:
1 | # Extensions |
hexo deploy时提示Erro
1 | Error: error: RPC failed; result=56, HTTP code = 200 |
在网上搜了一下大概是网络的问题,设置了一个git代理来解决
git代理的设置:
1 | git config --global http.proxy http://xx.xx.xx.xx:xxxx |
再次尝试执行hexo deploy
成功!