一,报错问题
使用npm install 命令安装依赖,出现以下错误
网上搜索解决方案说是淘宝镜像源的问题,需要更新镜像源为https://registry.npmmirror.com之后发现,执行npm install命令仍然报错。
二,解决方案
(1)
//清空缓存
npm cache clean --force
//设置淘宝新的镜像源
npm config set registry https://registry.npmmirror.com
(2)禁止SSL/TLS 安全连接
npm config set strict-ssl false
再次执行npm install成功