Node Sass找不到W64-bit和Node.js 6.x的绑定

时间:2016-11-25 10:04:08

标签: javascript node.js sass webpack

当我尝试处理scss文件时,我收到此错误消息。我正在使用webpack sass-loader

ERROR in ./src/app/scss/application.scss
Module build failed: Error: Missing binding D:\projects\living\user-platform\project\node_modules
-x64-48\binding.node
Node Sass could not find a binding for your current environment: Windows 64-bit with Node.js 6.x

有什么想法吗?

1 个答案:

答案 0 :(得分:3)

问题出现了,因为我以前安装过Node.js 7.x,node-sass是在Node.js 7.x版本上构建的。

所以:

npm rebuild node-sass

它已经解决了。