问题
安装依赖中有node-sass 的时候报错
解决方案
- 查看 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