打开前端工程 Node Sass does not yet support your current environment: Windows 64-bit

卸载当前sass版本,重新安装sass

打开cmd进入工程文件夹:

删除

npm uninstall --save node-sass

安装

npm install --save node-sass

我起初使用的淘宝镜像命令进行卸载安装后报错:Module build failed: Error: Cannot find module 'node-sass'

cnpm uninstall --save node-sass
cnpm install --save node-sass

重新使用npm命令卸载安装后解决

原文地址:https://www.cnblogs.com/lingblog/p/11966524.html