Samke11
Samke11

Reputation: 525

NPM - Getting error when trying to run the npm install command (webpack and babel-loader)

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:

enter image description here

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

Answers (1)

April
April

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

Related Questions