How can I turn off Google fonts and Material design icons in Vuetify

Viewed 371
1 Answers

First of all you need to set nuxtjs/vuetify to offline mode with this configuration:

{
  buildModules: [
    '@nuxtjs/vuetify'
  ],
  vuetify: {
    defaultAssets: false // <= this will disable autoloading Google font and MDI icons
  }
}

Then you can import these icons and fonts as here.

Related