diff options
Diffstat (limited to 'vue.config.js')
-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: { |