📜  vue htmlWebpackPlugin.options.title - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:01:09.801000             🧑  作者: Mango

代码示例1
// Put this into /vue.config.js
module.exports = {
  chainWebpack: config => {
    config
      .plugin('html')
      .tap(args => {
      args[0].title = '';    // Replace your title here
      return args;
    });
  }
};