由於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;
})
}
};
想看更多的博客,請到該 博客