bootstrap-vue-argon-dashboard
bootstrap-vue-argon-dashboard copied to clipboard
npm install fails
I have tried to npm install but it fails on node-sass
For me npm install error is solved by yarn install.
I hope it can helps.
I have the same issue with node-sass when I run yarn serve. Even after installing node-sass globally, I still get an error, this time with node-gyp. 🤷🏿♀️
Edit: WORKAROUND option
- From argon dashboard folder, open CLI and run $yarn install
- Add sass with $yarn add -D sass (adding node-sass will cause a version error)
- Run $yarn serve
god it's a cancer
same here
This worked for me.
yarn remove node-sass
yarn add sass
or
npm remove node-sass
npm add sass
Then,
yarn install
or
npm install