vue报错You may use special comments to disable some warnings解决

谁践踏了优雅 2023-02-17 02:26 74阅读 0赞

build/webpack.base.conf.js文件中,注释或者删除掉:module->rules中有关eslint的规则

  1. module: {
  2. rules: [
  3. //...(config.dev.useEslint ? [createLintingRule()] : []), // 注释或者删除
  4. {
  5. test: /\.vue$/,
  6. loader: 'vue-loader',
  7. options: vueLoaderConfig
  8. },
  9. ...
  10. }
  11. ]
  12. }

发表评论

表情:
评论列表 (有 0 条评论,74人围观)

还没有评论,来说两句吧...

相关阅读