vue.config.js

// vue.config.js
const vueConfig = {
  chainWebpack: config => {
    config.plugin('html').tap(args => {
      args[0].title = '这里设置标题'
      return args
    })
  },
  // 其他配置
}

module.exports = vueConfig

 

相关文章:

  • 2021-09-03
  • 2022-12-23
  • 2022-12-23
  • 2021-12-27
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-06-24
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-09-27
  • 2021-12-18
相关资源
相似解决方案