ERROR in ./src/app.vue Module Error (from ./node_modules/vue-loader/lib/index.js): vue-loader was used without the corresponding plugin. Make sure to include VueLoaderPlugin in your webpack config. @ ./src/index.js 2:0-27 8:18-21 ERROR in ./src/app.vue?

来源:2-2 webpack配置项目加载各种静态资源及css预处理器

慕仙7365328

2020-03-06 22:37

我配置的时候报错好多?

写回答 关注

5回答

  • 慕村4381839
    2021-01-29 09:54:58

    vue-loader 查阅文档发现v15版的vue-loader配置需要加个VueLoaderPlugin
    const VueLoaderPlugin =require('vueloader/lib/plugin');


  • 不骄不躁306
    2020-06-26 19:07:02

    非常感谢,我也遇到同样的问题,我重装了vue-loader的版本15.7.0,然后按照你的方法修改之后build成功了。

  • 聂小恶
    2020-04-23 17:08:17
    const path = require('path');
    const VueLoaderPlugin =require('vue-loader/lib/plugin');
    module.exports = {   
         entry : path.join(__dirname, 'src/index.js'),//__dirname 当前文件所在的目录地址  
         output: {     
            filename: 'bundle.js',     
            path: path.join(__dirname,'dist')   
             }, 
         module: {      
           rules: [ ]
           },      
         plugins: [ new VueLoaderPlugin() ],
         mode: 'development'
     }

    这是我的配置,上面的问题这样就可以解决了,还有一些rules里面的配置 ,本节课学习完就可以解决了

  • 拉链77
    2020-03-26 17:17:06
    const VueLoaderPlugin = require('vue-loader/lib/plugin');
    ...

      plugins: [

        new VueLoaderPlugin(),

      ],


  • 慕函数3762822
    2020-03-08 20:50:03

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

    百度一下

Vue+Webpack打造todo应用

用前端最热门框架Vue+最火打包工具Webpack打造todo应用

84606 学习 · 787 问题

查看课程

相似问题