Node Sass version 7.0.1 is incompatible with ^4.0.0

problem

使用 create-react-app 构建前端工程
想要使用sass,安装好 npm install node-sass --save
启动服务报错:
Node Sass version 7.0.1 is incompatible with ^4.0.0
看错误是不兼容导致的

solution

npm uninstall node-sass
npm i -D sass
npm run start

你可能感兴趣的:(pits,sass,前端,react.js)