yarn 配置

yarn 镜像源配置

镜像源配置是很常见的操作,有时候镜像不稳定需要检查并切换
理,特别是梯子代理造成本机镜像源失效,所以记录下相关操作

首先查看镜像源

yarn config get registry

尝试设置镜像源

yarn config set registry http://registry.npm.taobao.org/
yarn config set registry https://registry.npmjs.org/

如果短时间内发现镜像不管用 只有配置代理才行

配置代理:
// 查看代理

npm config get proxy
npm config get https-proxy

// 设置代理 端口号根据本机具体情况设置

npm config set proxy http://127.0.0.1:8080
npm config set https-proxy http://127.0.0.1:8080

如镜像源恢复正常可以删除代理

npm config delete proxy
npm config delete https-proxy
posted @ 2024-08-10 22:09  探出的头  阅读(316)  评论(0编辑  收藏  举报