vue.config.js
chainWebpack: (config) => {config.plugin('html').tap((args) => {args[0].title = '你想设置的 title 名字'
return args
})
}
index.html
<title>
<%= htmlWebpackPlugin.options.title %>
</title>
vue.config.js
chainWebpack: (config) => {config.plugin('html').tap((args) => {args[0].title = '你想设置的 title 名字'
return args
})
}
index.html
<title>
<%= htmlWebpackPlugin.options.title %>
</title>