aboutsummaryrefslogtreecommitdiff
path: root/vue.config.js
blob: ad61c7aed116888b2523c28182f225974ff68da2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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
    },
  },
});