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}
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};
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