美文网首页
vue-loader相关

vue-loader相关

作者: 瓢鳍小虾虎 | 来源:发表于2021-12-12 20:44 被阅读0次

【1】
vue-loader@v15以后安装的时候除了配置loader还要配置plugin

const VueLoaderPlugin = require('vue-loader/lib/plugin');
//...
module: {
  rules: [
    {
      test: /\.vue$/,
      loader: 'vue-loader',
    },
  ]
},
plugins:[
  new VueLoaderPlugin(),
]

同时注意:vue-loader规则不能放到oneOf里,VueLoaderPlugin会找不到,这可能是个bug,也许以后版本会修复吧。

相关文章

网友评论

      本文标题:vue-loader相关

      本文链接:https://www.haomeiwen.com/subject/eaerfrtx.html