欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

设置和取消淘宝镜像

程序员文章站 2022-03-03 17:21:42
...

设置淘宝镜像

npm config set registry https://registry.npm.taobao.org
npm config set disturl https://npm.taobao.org/dist

取消淘宝镜像

  • 编辑删除
npm config edit 

找到上面注册的两行删掉

  • 命令删除
npm config delete registry
npm config delete disturl