i have file of icons and custom theme which i want to include in plugin , how to do so ? i have following cod in plugin
import { createVuetify } from 'vuetify'
import { VBtn } from 'vuetify/components/VBtn'
import defaults from './vuetify/defaults'
import { icons } from './vuetify/icons'
import theme from './vuetify/theme'
import '@core/scss/template/libs/vuetify/index.scss'
import 'vuetify/styles'
export default defineNuxtPlugin(({ vueApp }) => {
const vueitfy = createVuetify({
aliases: {
IconBtn: VBtn,
},
defaults,
icons,
theme,
})
console.log('vuetify.ts is working' , vueitfy)
vueApp.use(vueitfy)
})
i have file of icons and custom theme which i want to include in plugin , how to do so ? i have following cod in plugin