赞
踩
创建一个vue项目的时候,执行了cnpm install -g vue-cli,到第二步:vue init wepack '项目名'的时候报错:
vue-cli · Failed to download repo vuejs-templates/webpack: unable to verify the first certificate
解决方式:
去C:\Users\Administrator\AppData\Roaming\npm\node_modules\vue-cli\node_modules\download目录下打开index.js文件,修改如下:
- opts = Object.assign({
- encoding: null,
- rejectUnauthorized: false
- //rejectUnauthorized: process.env.npm_config_strict_ssl !== 'false'
- }, opts);
将rejectUnauthorized后边的内容修改为false即可。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。