Answers for "node modules scss failed"

2

error /node_modules/node-sass: Command failed

// for yarn
yarn remove node-sass
yarn add sass
// for npm
npm uninstall node-sass
npm i sass
Posted by: Guest on November-01-2021
1

node sass install error

You need to do next steps and it should work:

rm -rf node_modules package-lock.json 
npm install --saveDev [email protected] 
npm install
Voila :)
Posted by: Guest on March-18-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language