问答详情
源自:2-3 webpack-dev-server的配置和使用

webpack打包时出现这个问题

vue-loader was used without the corresponding plugin. Make sure to include VueLoaderPlugin in your webpack config. 老师这个是怎么回事

https://img3.mukewang.com/5b9a30270001960412970215.jpg

提问者:八哥love 2018-09-13 17:39

个回答

  • qq_加油君_1
    2018-09-14 11:04:09

    vue-loader 升级到15后需要加上这个插件

    const VueLoaderPlugin = require('vue-loader/lib/plugin')

    配置里面加上这个插件

    plugins: [
        new VueLoaderPlugin()
      ]