vue-cli4修改index.html中的title

2021-01-19 11:14

阅读:677

标签:bpa   html   ports   cli   ref   module   pre   conf   mod   

由于vue-cli4的index.html的title是在webpack中定义的,如下

修改方法:
在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

标签:bpa   html   ports   cli   ref   module   pre   conf   mod   

原文地址:https://www.cnblogs.com/blogwxb/p/13336636.html

上一篇:js 下载

下一篇:CSS常规属性


评论


亲,登录后才可以留言!