美文网首页
前端祖传代码

前端祖传代码

作者: _Rondo | 来源:发表于2021-01-06 12:24 被阅读0次

    分享几段祖传的npm、yarn代码解决大部分下载依赖问题
    npm

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

    安装yarn

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

    设置yarn

    yarn config set registry https://registry.npm.taobao.org -g
    yarn config set registry https://registry.npm.taobao.org --global
    

    node-sass

    yarn config set sass_binary_site http://cdn.npm.taobao.org/dist/node-sass -g
    

    或者

    set SASS_BINARY_SITE=https://npm.taobao.org/mirrors/node-sass/ && npm install node-sass
    

    相关文章

      网友评论

          本文标题:前端祖传代码

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