配置vue项目的网站标题 cloud_moon 2023-03-27 50 阅读1分钟 在vue.config.js里面加上 chainWebpack: (config) => { config .plugin('html') .tap((args) => { args[0].title = 'Custom Title'; return args; }); }