[Vuejs]-I'm trying unsuccessfully to disable the dark theme in @nuxtjs/vuetify

-1👍

Try something like this :

  buildModules: [
    // https://go.nuxtjs.dev/vuetify
    '@nuxtjs/vuetify',
  ],

  // Vuetify module configuration (https://go.nuxtjs.dev/config-vuetify)
  vuetify: {
      theme: {
        dark: false, <--- here
      },
  },

Leave a comment