赞
踩
最近在运行vue项目时遇到一个问题。执行npm install命令,会很快速的报错。
后来百度了一下才发现是淘宝镜像证书过期了。解决方案如下:
1、取消ssl验证:
npm config set strict-ssl false 这个方法一般就可以解决了。
npm config set strict-ssl false
2、更换npm镜像源:
npm config set registry https://registry.npmmirror.com (淘宝的镜像源更新了地址)
npm config set registry https://registry.npmmirror.com
3、清除缓存
npm cache clean --force
如此便能解决了。
赞
踩
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。