问答详情
源自:2-1 vue-loader+webpack项目配置

执行npm run build报如下错误,希望老师帮忙看一下

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.


提问者:等烟雨 2019-10-10 15:57

个回答

  • 三天半打渔
    2019-10-11 15:25:47
    已采纳

    // webpack配置文件 
    const path = require('path');
    const htmlWebpackPlugin = require('html-webpack-plugin');
    const VueLoaderPlugin = require('vue-loader/lib/plugin'); //引入这行
    module.exports = {
        mode:'none',
        entry:'./src/main.js',
        output:{
            path:path.join(__dirname,'./dist'),
            filename:'bundle.js'
        },
        plugins:[
            new htmlWebpackPlugin({
                template:path.join(__dirname,'./src/index.html'),
                filename:'index.html'
            }),         
            new VueLoaderPlugin() //new一个实例
        ]
    }


  • 欧尼桑1111
    2019-10-15 16:40:13

    http://img1.mukewang.com/5da585d70001a78009420529.jpg

    像这样就好了

  • 欧尼桑1111
    2019-10-15 16:39:43


    像这样就好了