Hexo cannot get /

========================

因为大改了博客,node_modules内的文件被改动过,导致博客的index.html文件生成出现问题。

执行npm audit fix 查看是否缺失组件,通过npm install hexo-xxx-xxx 安装即可。

这里我遇到的问题是Cannot get /,缺失了hexo-generator-index组件,应该是我安装其他组件时将其卸载了。之后进行了hexo clean 才发现不能生成index.html这个问题, 因此执行npm install hexo-generator-index便解决了我遇到的问题。