自动摘要
正在生成中……
Vue
使用sass
预编译器之后发生以下错误:
Syntax Error: Error: Node Sass does not yet support your current environment: OS X 64-bit with Unsupported runtime (88)
原因是 node-sass 4.4 当前环境并不支持,也可能跟node版本或者操作系统有关,有些方法说要将node降级到一个LTS版本。
我的解决方法:
npm uninstall node-sass
npm i -D sass
参考:stackoverflow的问答