Module version
"@nuxtjs/vuetify": "^1.0.0",
Describe the bug
When I remove dark prop from v-app component, the dark theme is still active even when re-launch the server after clearing the cache.
Steps to reproduce the behavior:
create nuxt-app my-applayouts/default.vue remove dark prop from v-app componentExpected behavior
When I remove dark prop from v-app component, I must see the webpage light
Billal Begueradj
@begueradj No cause you probably still have dark: true in your nuxt.config.js, you need it to remove it if you want light theme by default.
https://github.com/nuxt/create-nuxt-app/blob/master/template/nuxt/nuxt.config.js#L135
You are right, I forgot that since several months ago, Vuetify settings were moved from the plugins folder to nuxt.config.js file. Thank you very much
Yes, but if I want to have dark and light in different layouts
Most helpful comment
@begueradj No cause you probably still have
dark: truein yournuxt.config.js, you need it to remove it if you want light theme by default.https://github.com/nuxt/create-nuxt-app/blob/master/template/nuxt/nuxt.config.js#L135