You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
368 B
20 lines
368 B
|
1 year ago
|
/**
|
||
|
|
* plugins/vuetify.js
|
||
|
|
*
|
||
|
|
* Framework documentation: https://vuetifyjs.com`
|
||
|
|
*/
|
||
|
|
|
||
|
|
// Styles
|
||
|
|
import '@mdi/font/css/materialdesignicons.css'
|
||
|
|
import 'vuetify/styles'
|
||
|
|
|
||
|
|
// Composables
|
||
|
|
import { createVuetify } from 'vuetify'
|
||
|
|
|
||
|
|
// https://vuetifyjs.com/en/introduction/why-vuetify/#feature-guides
|
||
|
|
export default createVuetify({
|
||
|
|
theme: {
|
||
|
|
defaultTheme: 'dark',
|
||
|
|
},
|
||
|
|
})
|