Answers for "vue htmlWebpackPlugin.options.title"

0

vue htmlWebpackPlugin.options.title

// Put this into /vue.config.js
module.exports = {
  chainWebpack: config => {
    config
      .plugin('html')
      .tap(args => {
      args[0].title = '<Your new title>';	// Replace your title here
      return args;
    });
  }
};
Posted by: Guest on July-18-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language