在M1芯片的MacOS上做前端开发(VueJS),之前Windows的项目,里面有SASS的依赖,启动的时候提示报错,如下: Node Sass does not yet support your current environment: OS X Unsupported architecture (arm64) with Unsupported runtime (93) 找到package.json: "node-sass": "^4.14.1", 换成: "sass": "^1.45.0", 删除node_mo…