Reputation: 125
I am trying to install SASS compiler node-sass which will compile SCSS code into CSS code. I am trying by watching an online course, doing same things but getting some errors.
npm init --yes : creates a json file
npm install node-sass : This command cause the error below
I tried a lot of things to solve and serached for hours but I could not figure out how to get node-sass running.
Upvotes: 5
Views: 9623
Reputation: 1310
node-sass is deprecated and doesn't support node 18. Replace it with sass
npm uninstall node-sass
npm install sass
Upvotes: 7