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?
我配置的時候報錯好多?
2021-01-29
vue-loader 查閱文檔發現v15版的vue-loader配置需要加個VueLoaderPlugin
const?VueLoaderPlugin?=require(
'vueloader/lib/plugin'
);
2020-06-26
非常感謝,我也遇到同樣的問題,我重裝了vue-loader的版本15.7.0,然后按照你的方法修改之后build成功了。
2020-04-23
這是我的配置,上面的問題這樣就可以解決了,還有一些rules里面的配置 ,本節課學習完就可以解決了
2020-03-26
??plugins:?[
????new?VueLoaderPlugin(),
??],
2020-03-08
vue-loader was used without the corresponding plugin. Make sure to include VueLoaderPlugin in your webpack config
百度一下