diff options
author | HampusM <hampus@hampusmat.com> | 2021-06-11 22:18:45 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2021-06-11 22:18:45 +0200 |
commit | 88dca239e50d51acb5e12174c6bd0df8c4bc3b7b (patch) | |
tree | 4233094a0f83eee3f98033957b7d0beac35b2441 /packages/client/vue.config.js | |
parent | b2e0d3154336946336edee4e32b57a467e255050 (diff) |
Implemented title and favicon stuff
Diffstat (limited to 'packages/client/vue.config.js')
-rw-r--r-- | packages/client/vue.config.js | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/packages/client/vue.config.js b/packages/client/vue.config.js index 94cfb20..f35b739 100644 --- a/packages/client/vue.config.js +++ b/packages/client/vue.config.js @@ -21,5 +21,13 @@ module.exports = { changeOrigin: true } } + }, + chainWebpack: config => { + config + .plugin("html") + .tap(args => { + args[0].title = settings.title; + return args; + }); } }; |