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: { // https://github.com/vuetifyjs/vuetify-loader/tree/next/packages/vuetify-loader }, }, });