最近在运行nodejs的程序的时候,总是会出现 Node Sass could not find a binding for your current environment: Windows 64-bit with Node.js 10.x 等的问题,导致前端程序启动不了。
根据提示执行 npm rebuild node-sass 但发现并没有那么顺利,接下来又出现了其他报错,导致未rebuild成功。
解决方案
cnpm install node-sass@latest
最好换淘宝源
npm install -g cnpm --registry=https://registry.npm.taobao.org
执行完成后重启应用,成功解决。