File tree Expand file tree Collapse file tree 3 files changed +11
-0
lines changed Expand file tree Collapse file tree 3 files changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ export default defineNuxtConfig({
33 devtools : { enabled : true } ,
44 compatibilityDate : '2025-05-13' ,
55 nuxtifyCore : {
6+ verboseLogs : true ,
67 brand : {
78 tagline : 'Catchy tagline' ,
89 } ,
Original file line number Diff line number Diff line change @@ -23,6 +23,9 @@ export default defineNuxtModule<ModuleOptions>({
2323 } ,
2424 } ,
2525 defaults : {
26+ // Logs
27+ verboseLogs : false ,
28+
2629 // Brand
2730 brand : {
2831 name : '@nuxtify/core' ,
@@ -70,6 +73,8 @@ export default defineNuxtModule<ModuleOptions>({
7073 async setup ( _options , _nuxt ) {
7174 const resolver = createResolver ( import . meta. url )
7275
76+ if ( _options . verboseLogs ) console . log ( '[nuxtify-core] Verbose logging enabled.' )
77+
7378 // Modules
7479 await installModule ( 'vuetify-nuxt-module' , {
7580 vuetifyOptions : {
Original file line number Diff line number Diff line change @@ -54,6 +54,11 @@ interface PoliciesOptions {
5454}
5555
5656export interface ModuleOptions {
57+ /**
58+ * Verbose logging
59+ */
60+ verboseLogs ?: boolean
61+
5762 /**
5863 * Brand options
5964 */
You can’t perform that action at this time.
0 commit comments