[Vuejs]-Getting an error "failed to compile Module not found: Error: Can't resolve 'babel-loader"

-1👍

Are you using vue-cli for this project? If so, you should be able to just do:

  • npm install --save-dev babel-loader

(or if you’re using yarn)

  • yarn add --dev babel-loader

If you’re not using vue-cli then you will still need to install babel-loader using the methods above, but you will also have to add it to your webpack config.

More on babel-loader:

Leave a comment