【small-debug】
安装sitemap插件时遇到found 4 low severity vulnerabilities
正在安装sitemap插件
npm install hexo-generator-sitemap --save 适合提交给谷歌搜素引擎
npm install hexo-generator-baidu-sitemap --save 适合提交百度搜索引擎
出现:
npm ERR! code EAUDITNOPJSON
npm ERR! audit No package.json found: Cannot audit a project without a package.json
原因是没有package. json文件,那就新建一个
npm init --yes
解决后重新输入安装插件的命令
出现
found 1 low severity vulnerability
run `npm audit fix` to fix them, or `npm audit` for details
输入
npm audit fix
即可