美文网首页
yarn / npm 设置淘宝源

yarn / npm 设置淘宝源

作者: _孙行者_ | 来源:发表于2021-04-19 22:08 被阅读0次

    yarn设置镜像

    yarn config set registry https://registry.npm.taobao.org -g 
    yarn config set disturl https://npm.taobao.org/dist -g 
    yarn config set electron_mirror https://npm.taobao.org/mirrors/electron/ -g 
    yarn config set sass_binary_site https://npm.taobao.org/mirrors/node-sass/ -g 
    yarn config set phantomjs_cdnurl https://npm.taobao.org/mirrors/phantomjs/ -g
    

    npm设置为淘宝镜像

    npm config set registry https://registry.npm.taobao.org 
    npm config set disturl https://npm.taobao.org/dist 
    npm config set electron_mirror https://npm.taobao.org/mirrors/electron/ 
    npm config set sass_binary_site https://npm.taobao.org/mirrors/node-sass/ 
    npm config set phantomjs_cdnurl https://npm.taobao.org/mirrors/phantomjs/
    

    相关文章

      网友评论

          本文标题:yarn / npm 设置淘宝源

          本文链接:https://www.haomeiwen.com/subject/bgiwlltx.html