vue——解决“You may use special comments to disable some warnings. Use // eslint-disable-next-line to ig

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

module: {
  rules: [
    //...(config.dev.useEslint ? [createLintingRule()] : []), // 注释或者删除
    {
      test: /\.vue$/,
      loader: 'vue-loader',
      options: vueLoaderConfig
    },
    ...
    }
  ]
}

而后 nmp run dev 就能正常运行了webpack

相关文章
相关标签/搜索