change htmlwebpackplugin options title

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

showing results for - "change htmlwebpackplugin options title"
Marcelle
19 Mar 2016
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}
Elea
24 Sep 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