vue的title标签中出现的htmlWebpackPlugin.options.title

 
在项目/public/index.html中
<title><%= htmlWebpackPlugin.options.title %></title>
 
module.exports = {
 chainWebpack: (config) => {
   // 添加上这个配置 config.plugin(
'html').tap((args) => { args[0].title = '你想变成的名字' return args })
  // end }

 

posted @ 2022-02-10 15:08  Dz&Ying  阅读(486)  评论(0)    收藏  举报