Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

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;
    });
  }
};
 
PREVIOUS NEXT
Tagged: #vue
ADD COMMENT
Topic
Name
2+2 =