📅  最后修改于: 2022-03-11 15:01:09.801000             🧑  作者: Mango
// Put this into /vue.config.js
module.exports = {
chainWebpack: config => {
config
.plugin('html')
.tap(args => {
args[0].title = ''; // Replace your title here
return args;
});
}
};