TODO: change api.conf URL references to use environment variables and add these variables to the docker-compose configuration for host domain
16 lines
470 B
JavaScript
16 lines
470 B
JavaScript
import '@mdi/font/css/materialdesignicons.css' // Ensure you are using css-loader
|
|
import { createVuetify } from 'vuetify'
|
|
import 'vuetify/styles'
|
|
import * as components from 'vuetify/components'
|
|
import * as directives from 'vuetify/directives'
|
|
|
|
import { md2 } from 'vuetify/blueprints'
|
|
|
|
export default createVuetify({
|
|
blueprint: md2,
|
|
components,
|
|
directives,
|
|
icons: {
|
|
defaultSet: 'mdi', // This is already the default value - only for display purposes
|
|
},
|
|
}) |