export default defineNuxtPlugin((nuxtApp) => { const { $appHelpers } = nuxtApp; const themeCookie = useCookie<'light' | 'dark'>($appHelpers.COOKIES_THEME_KEY, { default: () => 'light', path: '/', }) const theme = themeCookie.value || 'light' useHead({ htmlAttrs: { 'data-theme': theme, }, }) })