htmlwebpackplugin options title

Solutions on MaxInterview for htmlwebpackplugin options title by the best coders in the world

showing results for - "htmlwebpackplugin options title"
Maite
27 Feb 2020
1//vue.config.js
2module.exports = {
3  chainWebpack: config => {
4    config
5      .plugin('html')
6      .tap(args => {
7        args[0].title = "Popular films";
8        return args;
9      })
10  }
11}
Amel
25 Mar 2017
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};
Deborah
06 Jan 2020
1//vue.config.js
2module.exports = {
3    chainWebpack: config => {
4        config
5            .plugin('html')
6            .tap(args => {
7                args[0].title = "My Vue App";
8                return args;
9            })
10    }
11}
12