mirror of
https://github.com/xlmnxp/extractify.zip.git
synced 2024-11-23 17:13:12 +03:00
19 lines
476 B
TypeScript
19 lines
476 B
TypeScript
{5a3b57d4c1e2abb50c5ca3ce88957e4fa5c68a6d true 476 vuetify.ts 0xc001ec4d90}
import { createVuetify } from 'vuetify'
|
|
import * as components from 'vuetify/components'
|
|
import * as directives from 'vuetify/directives'
|
|
|
|
export default defineNuxtPlugin(nuxtApp => {
|
|
// get system dark mode
|
|
const darkMode = window.matchMedia('(prefers-color-scheme: dark)').matches
|
|
|
|
const vuetify = createVuetify({
|
|
ssr: false,
|
|
components,
|
|
directives,
|
|
theme: {
|
|
defaultTheme: darkMode ? 'dark' : 'light',
|
|
}
|
|
})
|
|
|
|
nuxtApp.vueApp.use(vuetify)
|
|
}) |