npm install安装报错
npm install安装的时候报错:
found 5546 vulnerabilities (5546 low, 4 moderate)
run `npm audit fix` to fix them, or `npm audit` for details
解决方法:
执行 npm audit fix
没用,然后执行
npm cache clean --force
清除缓存,并删掉 node_modules
检查 package.json
文件,如果缺少 ,则执行
npm init -y
然后把包装回来
npm i
然后
npm run build
项目成功运行.
文章评论