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({
3
3
devtools : { enabled : true } ,
4
4
compatibilityDate : '2025-05-13' ,
5
5
nuxtifyCore : {
6
+ verboseLogs : true ,
6
7
brand : {
7
8
tagline : 'Catchy tagline' ,
8
9
} ,
Original file line number Diff line number Diff line change @@ -23,6 +23,9 @@ export default defineNuxtModule<ModuleOptions>({
23
23
} ,
24
24
} ,
25
25
defaults : {
26
+ // Logs
27
+ verboseLogs : false ,
28
+
26
29
// Brand
27
30
brand : {
28
31
name : '@nuxtify/core' ,
@@ -70,6 +73,8 @@ export default defineNuxtModule<ModuleOptions>({
70
73
async setup ( _options , _nuxt ) {
71
74
const resolver = createResolver ( import . meta. url )
72
75
76
+ if ( _options . verboseLogs ) console . log ( '[nuxtify-core] Verbose logging enabled.' )
77
+
73
78
// Modules
74
79
await installModule ( 'vuetify-nuxt-module' , {
75
80
vuetifyOptions : {
Original file line number Diff line number Diff line change @@ -54,6 +54,11 @@ interface PoliciesOptions {
54
54
}
55
55
56
56
export interface ModuleOptions {
57
+ /**
58
+ * Verbose logging
59
+ */
60
+ verboseLogs ?: boolean
61
+
57
62
/**
58
63
* Brand options
59
64
*/
You can’t perform that action at this time.
0 commit comments