Error: Node Sass does not yet support your current environment: Windows 64-bit with Unsupported runtime (115)
时间: 2023-11-21 14:56:32 浏览: 37
node组件node-sass、sass-loader
根据提供的引用内容,这个错误是由于Node Sass不支持当前的Windows 64位操作系统和运行时环境导致的。解决这个问题的方法是更新Node Sass或者使用其他兼容的库。
以下是两种解决方法:
1.更新Node Sass版本
```shell
npm install node-sass@latest
```
2.使用其他兼容的库,例如sass
```shell
npm install sass
```
阅读全文