由于vue-cli4的index.html的title是在webpack中定义的,如下
<title><%= htmlWebpackPlugin.options.title %></title>
修改方法:
在vue.config.js中设置
module.exports = {
//修改或新增html-webpack-plugin的值,在index.html里面能读取htmlWebpackPlugin.options.title
chainWebpack: config =>{
config.plugin(‘html‘)
.tap(args => {
args[0].title = "宝贝商城";
return args;
})
}
};
想看更多的博客,请到该 博客