vue.config.js
chainWebpack: config => {
config
.plugin('html')
.tap(args => {
args[0].title = '管理'
return args
})
},
index.html
<title><%= htmlWebpackPlugin.options.title %></title>
vue.config.js
chainWebpack: config => {
config
.plugin('html')
.tap(args => {
args[0].title = '管理'
return args
})
},
index.html
<title><%= htmlWebpackPlugin.options.title %></title>