htmlwebpackplugin.options.title change code example
Example: htmlWebpackPlugin.options.title
//vue.config.js
module.exports = {
chainWebpack: config => {
config
.plugin('html')
.tap(args => {
args[0].title = "Popular films";
return args;
})
}
}