webpack报错解决

1.

Error: Cannot find module '@babel/core'

原因:版本搭配问题

解决退回版本

npm install babel-loader@7.1.5

 

2.

为了引入.vue文件,安装完vue-loader和vue-template-compiler后,运行报错:

vue-loader was used without the corresponding plugin.Make sure to include VueLoaderPlugin in your webpack config.

百度了一下,是因为vue-loader,15的版本需要再添加plugin的配置。有两种解决方法:

1.把安装版本改为14的

2.在webpack.config.js中添加:

  const { VueLoaderPlugin }=require('vue-loader')

  module.exports={

    plugins:[

      new VueLoaderPlugin()

    ]

  }

posted @ 2019-09-20 21:48  Hi前端  阅读(310)  评论(0编辑  收藏  举报