解决:vue-loader was used without the corresponding plugin.

原因

webpack经常出现版本不兼容问题,vue-loader在15以前的版本打包时候会自动生成VueLoaderPlugin,但是现在需要手动去wepack.config.js文件中去加入,如下图所示
image

const VueLoaderPlugin = require('vue-loader/lib/plugin');
plugins: [
        // make sure to include the plugin for the magic
        new VueLoaderPlugin()
    ],

至此问题解决

posted @ 2021-08-05 11:03  胸怀丶若谷  阅读(716)  评论(0)    收藏  举报