diff options
author | 135e2 <[email protected]> | 2022-08-09 01:19:26 +0800 |
---|---|---|
committer | 135e2 <[email protected]> | 2022-08-09 01:19:26 +0800 |
commit | bb9c5a0bce6c9c5663e1aafcf11d7a02efa898e5 (patch) | |
tree | c0f3b6da5b8e66bcd29742151dc36bc8745e73a3 | |
parent | ef310899b5c0ea08ac68fcef6db80c155c0e23b6 (diff) | |
download | otonashi-bb9c5a0bce6c9c5663e1aafcf11d7a02efa898e5.tar.gz otonashi-bb9c5a0bce6c9c5663e1aafcf11d7a02efa898e5.tar.bz2 otonashi-bb9c5a0bce6c9c5663e1aafcf11d7a02efa898e5.zip |
chore: configure website title
-rw-r--r-- | vue.config.js | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/vue.config.js b/vue.config.js index 3b81907..ad61c7a 100644 --- a/vue.config.js +++ b/vue.config.js @@ -1,5 +1,13 @@ const { defineConfig } = require("@vue/cli-service"); module.exports = defineConfig({ + chainWebpack: (config) => { + config.plugin("html").tap((args) => { + // Configure the html title + // Ref: https://cli.vuejs.org/config/#chainwebpack + args[0].title = "Otonashi"; + return args; + }); + }, transpileDependencies: true, pluginOptions: { vuetify: { |