vue安装组件报错In most cases you are behind a proxy or have bad network settings.

发布时间:2024年01月15日

解决办法

步骤1

npm config get proxy
npm config get https-proxy


如果2个返回值不为null,请执行下面代码,重置为null。否则,直接执行步骤2。

npm config set proxy null
npm config set https-proxy null

步骤2

npm config set registry http://registry.npmjs.org/

步骤3

npm install -g npm --registry=https://registry.npm.taobao.org

文章来源:https://blog.csdn.net/qq_40047019/article/details/135601130
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。