From b3d4e4e565b1590d14a6e53058749bf42fb41d9a Mon Sep 17 00:00:00 2001 From: clonbg Date: Thu, 14 Aug 2025 15:27:58 +0200 Subject: [PATCH] Set Vuetify default theme to light mode --- app/plugins/vuetify.js | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/app/plugins/vuetify.js b/app/plugins/vuetify.js index ea45c9f..4c679bf 100644 --- a/app/plugins/vuetify.js +++ b/app/plugins/vuetify.js @@ -2,6 +2,12 @@ import { createVuetify } from "vuetify"; import * as components from "vuetify/components"; export default defineNuxtPlugin((nuxtApp) => { - const vuetify = createVuetify({ components }); + const vuetify = createVuetify({ + components, + theme: { + defaultTheme: "light", // 'light' | 'dark' | 'system' + }, + }); + nuxtApp.vueApp.use(vuetify); });