美文网首页
解决node-sass 安装报错问题

解决node-sass 安装报错问题

作者: 萧雪圣 | 来源:发表于2019-12-05 16:23 被阅读0次

    问题

    安装依赖中有node-sass 的时候报错


    image.png

    解决方案

    • 查看 npm 配置 npm config list

    将 npm 源切换至淘宝源
    npm config set registry https://registry.npm.taobao.org
    通过 npm 全局安装 yarn
    npm install -g yarn

    如果执行 yarn 命令遇到报错,请将 npm bin -g 所得的路径添加至 PATH 环境变量中。

    • 查看 yarn 配置 yarn config list

    yarn 源切换至淘宝源
    yarn config set registry https://registry.npm.taobao.org
    执行 yarn install

    • 使用yarn 或者 npm 安装
      设置 安装node-sass的指定源为淘宝源
    yarn config set sass-binary-site https://npm.taobao.org/mirrors/node-sass
    npm config set sass-binary-site https://npm.taobao.org/mirrors/node-sass
    

    相关文章

      网友评论

          本文标题:解决node-sass 安装报错问题

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