vue-cli 3.0配置

https://www.jb51.net/article/146152.htm

https://www.jb51.net/article/147697.htm

https://cli.vuejs.org/zh/config/#publicpath

// vue.config.js
module.exports = {
  chainWebpack: config => {
    config.module
      .rule('eslint')
      .use('eslint-loader')
        .loader('eslint-loader')
        .tap(options => {
          // 修改它的选项...
          options.fix = true
          return options
        })
  }
}

  

猜你喜欢

转载自www.cnblogs.com/little-ab/p/10437255.html