Node Js10更新后Node-sass不兼容问题过程以及解决

一、Windows 64-bit with Unsupported runtime

 ERROR  Failed to compile with 2 errors                                                                            9:19:50 PM
 error  in ./src/module/home/page/home.vue
Module build failed: Error: Node Sass does not yet support your current environment: Windows 64-bit with Unsupported runtime

1.1、解决方法

//重新安装sass
npm install node-sass@latest 
//个人使用这个成功解决问题
cnpm install node-sass@latest

1.2、使用Taobao的镜像

//使用Taobao镜像
npm install --registry=https://registry.npm.taobao.org

1.3、ERROR in Cannot find module 'node-sass'

不能找到node-sass模块也可用这个命令解决

你可能感兴趣的:(基础)