配置vue项目的网站标题

50 阅读1分钟

在vue.config.js里面加上

chainWebpack: (config) => {
    config
      .plugin('html')
      .tap((args) => {
        args[0].title = 'Custom Title';
        return args;
      });
  }