No Layout:index.html
问题描述
最近对Hexo
以及Next
主题做了升级,升级之后在执行hexo g
编译时出现了No layout:index.html
的错误,如下图:
解决思路
- 查看hexo插件安装情况,因内容较多,只部分截图:
1 | npm ls --depth 0 |
- hexo的一些插件未安装
1 | npm ERR! peer dep missing: eslint@>= 4.12.1, required by babel-eslint@10.0.3 |
- 逐一安装缺失的插件
1 | npm install eslint --save |
- 执行
npm install
后,执行npm audit fix
访问Hexo博客出现“Cannot GET/xxx”错误
问题描述
在Hexo博客中,出现Cannot GET/xxx
错误便意味着xxx文件未被找到
。
Cannot GET/xxx
错误本质是hexo server
返回的一个404
错误。
解决思路
判断public目录下xxx文件是否存在。
如果说xxx.html不存在,那么执行
hexo c
,hexo g
重新生成一次,回到步骤1。步骤2执行完后xxx.html仍不存在,执行
npm audit fix
,查看是否少了什么组件,通过npm install hexo-xxx-xxx
安装即可。步骤3完成之后,执行
hexo c
,hexo g
重新生成静态文件。仍然有问题,请再参考此文:https://www.cnblogs.com/Sroot/p/6305938.html