1)、开发过程中node版本升级后,运行时,报错Error: Node Sass
Error: Node Sass does not yet support your current environment: OS X 64-bit with Unsupported runtime (64) For more information on which environments are supported please see:
(2)解决方案:
不用回退node版本,而是升级node-sass。
update你的sass版本即可:
npm rebuild node-sass
或者自己手动升级:
1.先卸载
npm uninstall --save node-sass
2.清除缓存
npm cache clean -f
3.升级node-sass模块
npm install --save node-sass
————————————————
版权声明:本文为CSDN博主「糖果果sugar」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/yaya07755/article/details/96834875