showing results for - "vue htmlwebpackplugin options title"
Romina
15 Oct 2019
1// Put this into /vue.config.js
2module.exports = {
3  chainWebpack: config => {
4    config
5      .plugin('html')
6      .tap(args => {
7      args[0].title = '<Your new title>';	// Replace your title here
8      return args;
9    });
10  }
11};