Error: Node Sass does not yet support your current environment: OS X Unsupported architecture (arm64) with Unsupported runtime (88) For more information on which environments are supported please see
解决办法
原因:由于mac m1 中 nodejs -16.0.x 版本过高,不兼容node-sass 解决方式: 降低nodejs版本,如使用stable 版本 node -v14.17.6
二、操作步骤
2.1 安装node版本管理模块 n
sudo npm install n -g
2.2 可以根据自己的需要选择安装版本[可选]
2.2.1 安装稳定版
sudo n stable
2.2.2 安装最新版
sudo n latest
2.3 版本降级/升级
sudo n 版本号
版本号可以在此处查询
https://nodejs.org/en/download/
例如:
sudo n 14.1.7.3