0

I am using react bootstrap

Want to customize reactbootstrap theme , so followed these instructions

https://create-react-app.dev/docs/adding-bootstrap/

So I installed sass , but it still giving error to install node-sass ( which is deprecated) as in the

any idea what i am doing wrong

screenshot

error with node-sass

1 Answers1

0

Try deleting your node_modules folder, lock file and replacing 'node-sass' with 'sass'

rm -rf node_modules package-lock.json
npm uninstall node-sass
npm i -S sass
npm i
Jonatan Kruszewski
  • 1,027
  • 3
  • 23