vue.config.js的配置问题

242 阅读1分钟
module.exports = {
  chainWebpack(config) {
    debugger
    console.log(config);
    config
      .when(process.env.NODE_ENV == 'development',
        config => {

          config.plugin('html')
            .tap(args => {
              debugger
              args[0].title = '秀色可茶'
              return args
            })
        }
      )
  }
}

vue.config.js配置为什么不能断点 也不能输出 怎样才能输出里面的内容?