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
如此就可正常使用。