I use Vuetify on Nuxt.js. But I can't use some material design icons.
For example <v-icon>mdi-cog</v-icon> shows blank. But other icons work well.
nuxt.config.js
buildModules: [
'@nuxtjs/vuetify',
],
vuetify: {
customVariables: ['~/assets/variables.scss'],
},
Is it because I have to update it?
And how to update it?