Node Sass version 6.0.0 is incompatible with^4.0.0 问题解决
问题:版本不兼容问题
解决:降低版本
1.卸载node-sass
npm uninstall node-sass
2.安装淘宝镜像(建议)
npm install -g mirror-config-china --registry=http://registry.npm.taobao.org
3.重新安装:npm install node-sass
4. 或者降低版本安装: 例:npm install node-sass@4.14.1
或者安装指定版本:npm install node-sass@版本号
网友评论