Change page title

This commit is contained in:
D. Berge
2020-09-15 00:39:46 +02:00
parent 0bbe29febc
commit 00e00a2ae6

View File

@@ -12,5 +12,13 @@ module.exports = {
ws: true ws: true
} }
} }
},
chainWebpack: config => {
config
.plugin('html')
.tap(args => {
args[0].title = 'Dougal Web'
return args
})
} }
} }