Installing Sass with React
This is a quick installation guide for Sass with React! After going through the install instructions on the Sass website, I was still not able to start using Sass with React. But then came Google to save the day! This is what worked for me:
// in the console, enter:
npm install node-sass — save// double check that Sass was installed
sass — version// then
npm i sass-loader@latest// and restart the terminal!
That’s it! If you had the same problem as me, I hope this solution helped you as well!