Hexo站点建设之——No-Layout-index-html
一 Hexo 编译时遇到的问题
博客的数量多了起来,编译的速度越来越慢,最新在进行hexo和hexo-theme升级,但是在执行hexo g编译时出现了No layout:index.html
的问题,参考了别问总结的思路,做下总结。
二 解决思路
查看执行`hexo g`时,编译过程中出现的警告、错误信息
2.1 缺少hexo插件
2.1.1 查看hexo插件安装情况
npm ls --depth 0
2.1.2 hexo 的一些插件未安装插件
npm ERR! peer dep missing: acorn@^6.0.0, required by acorn-dynamic-import@4.0.0
npm ERR! peer dep missing: eslint@>= 4.12.1, required by babel-eslint@10.0.1
三 解决办法
3.1 逐一安装缺失的包
npm install acorn --save
npm install eslint --save