Error: Node Sass does not yet support your current environment: Windows 64-bit with Unsupported runtime (72)

94% asset optimization ERROR  Failed to compile with 2 errors12:47:59 ├F10: 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 (72)
For more information on which environments are supported please see:
https://github.com/sass/node-sass/releases/tag/v4.7.2

解决办法:

思路:单独 install 一下出错的module: Node Sass。

   命令:#npm install node-sass --save-dev

    或者 #cnpm install node-sass --save-dev 

         --save-dev表示仅保存在当前项目中。

测试有效。

原文地址:https://www.cnblogs.com/zxh06820/p/13288144.html