[Vuejs]-Npm run dev not working with webpack/babel conflict

0👍

Probably one of your packages is outdated, according to the error. I guess it’s the babel loader.

  • Method 1 Upgrading or Updating your packages might solve the dependency error.
  • Method 2 Try running npm install --force or npm install --legacy-peer-deps. It should work.

Leave a comment