Reputation: 525
When I am trying to run this command npm install like I would usual stuff, I get these errors on this project that I am working on currently:
I have tried to fallback to Node.js v14.15.4 version to see if it will be fixed, but it would not. Anybody has any clue how to do this?
What I think:
Upvotes: 0
Views: 1485
Reputation: 104
Your project wants webpack 3.10 and babel-loader 6.4.1, but babel-loader 6.4.1 wants webpack 2. Upgrade babel-loader? (specifically to 7.x, not 8.x/latest, if you need webpack 3)
Upvotes: 2