vue-cli4修改index.html中的title
2021-01-19 11:14
标签:bpa html ports cli ref module pre conf mod 由于vue-cli4的index.html的title是在webpack中定义的,如下 修改方法: 想看更多的博客,请到该 博客 vue-cli4修改index.html中的title 标签:bpa html ports cli ref module pre conf mod 原文地址:https://www.cnblogs.com/blogwxb/p/13336636.html
在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;
})
}
};
文章标题:vue-cli4修改index.html中的title
文章链接:http://soscw.com/index.php/essay/44059.html