Reputation: 13
package.json file package.json I have run this command
npm install axios
This is the error that I'm getting while installing axios
Upvotes: 1
Views: 208
Reputation: 3587
It seems there are some version conflicts in the packages it's better to fix conflicts but if it doesn't matter and does not make any problem, you can install it using
npm install axios --force
Upvotes: 2