nuxt-ignis 0.3.0 → 0.3.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (128) hide show
  1. package/.data/content/contents.sqlite +0 -0
  2. package/.env +43 -0
  3. package/.nuxt/app.config.mjs +227 -1
  4. package/.nuxt/components.d.ts +496 -132
  5. package/.nuxt/content/components.ts +108 -0
  6. package/.nuxt/content/database.compressed.mjs +1 -0
  7. package/.nuxt/content/manifest.ts +33 -0
  8. package/.nuxt/content/sql_dump +6 -0
  9. package/.nuxt/content/types.d.ts +13 -0
  10. package/.nuxt/dev/index.mjs +4719 -66
  11. package/.nuxt/dev/index.mjs.map +1 -1
  12. package/.nuxt/dist/server/client.manifest.json +2 -2
  13. package/.nuxt/dist/server/client.manifest.mjs +18 -1
  14. package/.nuxt/eslint.config.d.mts +2 -2
  15. package/.nuxt/eslint.config.mjs +2 -2
  16. package/.nuxt/i18n.options.mjs +165 -0
  17. package/.nuxt/imports.d.ts +62 -31
  18. package/.nuxt/manifest/latest.json +1 -1
  19. package/.nuxt/manifest/meta/dev.json +1 -1
  20. package/.nuxt/mdc-configs.mjs +8 -0
  21. package/.nuxt/mdc-highlighter.mjs +213 -0
  22. package/.nuxt/mdc-image-component.mjs +1 -0
  23. package/.nuxt/mdc-imports.mjs +12 -0
  24. package/.nuxt/module/@nuxtjs-sitemap.d.ts +28 -0
  25. package/.nuxt/module/nuxt-robots.d.ts +35 -0
  26. package/.nuxt/module/nuxt-seo-utils.assets.d.ts +25 -0
  27. package/.nuxt/module/nuxt-seo-utils.d.ts +22 -0
  28. package/.nuxt/module/nuxt-site-config.d.ts +43 -0
  29. package/.nuxt/nitro.json +4 -4
  30. package/.nuxt/nuxt-i18n-logger.mjs +1 -0
  31. package/.nuxt/nuxt-icon-client-bundle.mjs +1 -0
  32. package/.nuxt/nuxt-icon-server-bundle.mjs +15 -0
  33. package/.nuxt/nuxt.d.ts +23 -6
  34. package/.nuxt/nuxt.json +2 -2
  35. package/.nuxt/schema/nuxt.schema.d.ts +193 -0
  36. package/.nuxt/schema/nuxt.schema.json +261 -1
  37. package/.nuxt/tsconfig.json +216 -42
  38. package/.nuxt/tsconfig.server.json +181 -23
  39. package/.nuxt/types/app.config.d.ts +227 -1
  40. package/.nuxt/types/build.d.ts +4 -1
  41. package/.nuxt/types/i18n-plugin.d.ts +104 -0
  42. package/.nuxt/types/imports.d.ts +334 -210
  43. package/.nuxt/types/neon.d.ts +137 -0
  44. package/.nuxt/types/nitro-imports.d.ts +268 -6
  45. package/.nuxt/types/nitro-routes.d.ts +65 -1
  46. package/.nuxt/types/plugins.d.ts +40 -17
  47. package/.nuxt/types/schema.d.ts +984 -2
  48. package/.nuxt/types/ui.d.ts +35 -0
  49. package/.nuxt/ui/accordion.ts +20 -0
  50. package/.nuxt/ui/alert.ts +264 -0
  51. package/.nuxt/ui/avatar-group.ts +52 -0
  52. package/.nuxt/ui/avatar.ts +54 -0
  53. package/.nuxt/ui/badge.ts +263 -0
  54. package/.nuxt/ui/breadcrumb.ts +45 -0
  55. package/.nuxt/ui/button-group.ts +16 -0
  56. package/.nuxt/ui/button.ts +378 -0
  57. package/.nuxt/ui/calendar.ts +103 -0
  58. package/.nuxt/ui/card.ts +34 -0
  59. package/.nuxt/ui/carousel.ts +38 -0
  60. package/.nuxt/ui/checkbox-group.ts +204 -0
  61. package/.nuxt/ui/checkbox.ts +236 -0
  62. package/.nuxt/ui/chip.ts +96 -0
  63. package/.nuxt/ui/collapsible.ts +6 -0
  64. package/.nuxt/ui/color-picker.ts +47 -0
  65. package/.nuxt/ui/command-palette.ts +50 -0
  66. package/.nuxt/ui/container.ts +3 -0
  67. package/.nuxt/ui/context-menu.ts +217 -0
  68. package/.nuxt/ui/drawer.ts +126 -0
  69. package/.nuxt/ui/dropdown-menu.ts +218 -0
  70. package/.nuxt/ui/form-field.ts +48 -0
  71. package/.nuxt/ui/form.ts +3 -0
  72. package/.nuxt/ui/index.ts +50 -0
  73. package/.nuxt/ui/input-menu.ts +436 -0
  74. package/.nuxt/ui/input-number.ts +245 -0
  75. package/.nuxt/ui/input.ts +289 -0
  76. package/.nuxt/ui/kbd.ts +31 -0
  77. package/.nuxt/ui/link.ts +22 -0
  78. package/.nuxt/ui/modal.ts +29 -0
  79. package/.nuxt/ui/navigation-menu.ts +510 -0
  80. package/.nuxt/ui/pagination.ts +13 -0
  81. package/.nuxt/ui/pin-input.ts +171 -0
  82. package/.nuxt/ui/popover.ts +6 -0
  83. package/.nuxt/ui/progress.ts +297 -0
  84. package/.nuxt/ui/radio-group.ts +350 -0
  85. package/.nuxt/ui/select-menu.ts +346 -0
  86. package/.nuxt/ui/select.ts +341 -0
  87. package/.nuxt/ui/separator.ts +172 -0
  88. package/.nuxt/ui/skeleton.ts +3 -0
  89. package/.nuxt/ui/slideover.ts +71 -0
  90. package/.nuxt/ui/slider.ts +171 -0
  91. package/.nuxt/ui/stepper.ts +202 -0
  92. package/.nuxt/ui/switch.ts +131 -0
  93. package/.nuxt/ui/table.ts +147 -0
  94. package/.nuxt/ui/tabs.ts +256 -0
  95. package/.nuxt/ui/textarea.ts +294 -0
  96. package/.nuxt/ui/toast.ts +81 -0
  97. package/.nuxt/ui/toaster.ts +91 -0
  98. package/.nuxt/ui/tooltip.ts +9 -0
  99. package/.nuxt/ui/tree.ts +154 -0
  100. package/.nuxt/ui-image-component.ts +1 -0
  101. package/.nuxt/ui.css +146 -0
  102. package/content.config.ts +6 -10
  103. package/features.ts +43 -22
  104. package/nuxt.config.ts +1 -1
  105. package/package.json +13 -12
  106. package/server/api/neonTest.ts +7 -5
  107. package/tailwind.config.ts +1 -1
  108. package/test/features/db-neon.txt +3 -0
  109. package/test/features/db-off.txt +3 -0
  110. package/test/features/db-supabase.txt +3 -0
  111. package/test/features/default.txt +3 -0
  112. package/test/features/disable-core.txt +3 -0
  113. package/test/features/enable-all.txt +4 -0
  114. package/test/features/forms-formkit.txt +3 -0
  115. package/test/features/forms-off.txt +3 -0
  116. package/test/features/forms-vueform.txt +3 -0
  117. package/test/features/ui-nuxt-ui.txt +3 -0
  118. package/test/features/ui-off.txt +3 -0
  119. package/test/features/ui-tailwind.txt +4 -0
  120. package/test/features.test.ts +191 -0
  121. package/utils/config/content.config.ts +12 -0
  122. package/utils/config/vueform.config.ts +20 -0
  123. package/utils/content.ts +31 -0
  124. package/utils/tailwind.ts +19 -0
  125. package/utils/vueform.ts +16 -0
  126. package/vueform.config.ts +4 -16
  127. package/.nuxt/component-chunk.mjs +0 -1
  128. package/.nuxt/dist/server/server.mjs +0 -1
@@ -29,6 +29,74 @@ declare module '@nuxt/schema' {
29
29
  * Configuration for `@vueuse/nuxt`
30
30
  */
31
31
  ["vueuse"]: typeof import("@vueuse/nuxt").default extends NuxtModule<infer O> ? O : Record<string, any>
32
+ /**
33
+ * Configuration for `@nuxt/icon`
34
+ */
35
+ ["icon"]: typeof import("@nuxt/icon").default extends NuxtModule<infer O> ? O : Record<string, any>
36
+ /**
37
+ * Configuration for `@nuxtjs/color-mode`
38
+ */
39
+ ["colorMode"]: typeof import("@nuxtjs/color-mode").default extends NuxtModule<infer O> ? O : Record<string, any>
40
+ /**
41
+ * Configuration for `@nuxt/ui`
42
+ */
43
+ ["ui"]: typeof import("@nuxt/ui").default extends NuxtModule<infer O> ? O : Record<string, any>
44
+ /**
45
+ * Configuration for `nuxt-neon`
46
+ */
47
+ ["neon"]: typeof import("nuxt-neon").default extends NuxtModule<infer O> ? O : Record<string, any>
48
+ /**
49
+ * Configuration for `@nuxtjs/i18n`
50
+ */
51
+ ["i18n"]: typeof import("@nuxtjs/i18n").default extends NuxtModule<infer O> ? O : Record<string, any>
52
+ /**
53
+ * Configuration for `@vueform/nuxt`
54
+ */
55
+ ["vueform"]: typeof import("@vueform/nuxt").default extends NuxtModule<infer O> ? O : Record<string, any>
56
+ /**
57
+ * Configuration for `C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt-site-config@3.1.9_magi_f0f38b684fdcd54347382cd1d38f79a6/node_modules/nuxt-site-config/dist/module`
58
+ */
59
+ ["site"]: typeof import("C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt-site-config@3.1.9_magi_f0f38b684fdcd54347382cd1d38f79a6/node_modules/nuxt-site-config/dist/module").default extends NuxtModule<infer O> ? O : Record<string, any>
60
+ /**
61
+ * Configuration for `@nuxtjs/robots`
62
+ */
63
+ ["robots"]: typeof import("@nuxtjs/robots").default extends NuxtModule<infer O> ? O : Record<string, any>
64
+ /**
65
+ * Configuration for `@nuxtjs/sitemap`
66
+ */
67
+ ["sitemap"]: typeof import("@nuxtjs/sitemap").default extends NuxtModule<infer O> ? O : Record<string, any>
68
+ /**
69
+ * Configuration for `nuxt-og-image`
70
+ */
71
+ ["ogImage"]: typeof import("nuxt-og-image").default extends NuxtModule<infer O> ? O : Record<string, any>
72
+ /**
73
+ * Configuration for `nuxt-schema-org`
74
+ */
75
+ ["schemaOrg"]: typeof import("nuxt-schema-org").default extends NuxtModule<infer O> ? O : Record<string, any>
76
+ /**
77
+ * Configuration for `nuxt-link-checker`
78
+ */
79
+ ["linkChecker"]: typeof import("nuxt-link-checker").default extends NuxtModule<infer O> ? O : Record<string, any>
80
+ /**
81
+ * Configuration for `nuxt-seo-utils`
82
+ */
83
+ ["seo"]: typeof import("nuxt-seo-utils").default extends NuxtModule<infer O> ? O : Record<string, any>
84
+ /**
85
+ * Configuration for `@nuxtjs/seo`
86
+ */
87
+ ["nuxtseo"]: typeof import("@nuxtjs/seo").default extends NuxtModule<infer O> ? O : Record<string, any>
88
+ /**
89
+ * Configuration for `@nuxtjs/mdc`
90
+ */
91
+ ["mdc"]: typeof import("@nuxtjs/mdc").default extends NuxtModule<infer O> ? O : Record<string, any>
92
+ /**
93
+ * Configuration for `@nuxt/content`
94
+ */
95
+ ["content"]: typeof import("@nuxt/content").default extends NuxtModule<infer O> ? O : Record<string, any>
96
+ /**
97
+ * Configuration for `nuxt-auth-utils`
98
+ */
99
+ ["auth"]: typeof import("nuxt-auth-utils").default extends NuxtModule<infer O> ? O : Record<string, any>
32
100
  /**
33
101
  * Configuration for `@nuxt/test-utils/module`
34
102
  */
@@ -71,6 +139,74 @@ declare module '@nuxt/schema' {
71
139
  * Configuration for `@vueuse/nuxt`
72
140
  */
73
141
  ["vueuse"]?: typeof import("@vueuse/nuxt").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
142
+ /**
143
+ * Configuration for `@nuxt/icon`
144
+ */
145
+ ["icon"]?: typeof import("@nuxt/icon").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
146
+ /**
147
+ * Configuration for `@nuxtjs/color-mode`
148
+ */
149
+ ["colorMode"]?: typeof import("@nuxtjs/color-mode").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
150
+ /**
151
+ * Configuration for `@nuxt/ui`
152
+ */
153
+ ["ui"]?: typeof import("@nuxt/ui").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
154
+ /**
155
+ * Configuration for `nuxt-neon`
156
+ */
157
+ ["neon"]?: typeof import("nuxt-neon").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
158
+ /**
159
+ * Configuration for `@nuxtjs/i18n`
160
+ */
161
+ ["i18n"]?: typeof import("@nuxtjs/i18n").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
162
+ /**
163
+ * Configuration for `@vueform/nuxt`
164
+ */
165
+ ["vueform"]?: typeof import("@vueform/nuxt").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
166
+ /**
167
+ * Configuration for `C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt-site-config@3.1.9_magi_f0f38b684fdcd54347382cd1d38f79a6/node_modules/nuxt-site-config/dist/module`
168
+ */
169
+ ["site"]?: typeof import("C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt-site-config@3.1.9_magi_f0f38b684fdcd54347382cd1d38f79a6/node_modules/nuxt-site-config/dist/module").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
170
+ /**
171
+ * Configuration for `@nuxtjs/robots`
172
+ */
173
+ ["robots"]?: typeof import("@nuxtjs/robots").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
174
+ /**
175
+ * Configuration for `@nuxtjs/sitemap`
176
+ */
177
+ ["sitemap"]?: typeof import("@nuxtjs/sitemap").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
178
+ /**
179
+ * Configuration for `nuxt-og-image`
180
+ */
181
+ ["ogImage"]?: typeof import("nuxt-og-image").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
182
+ /**
183
+ * Configuration for `nuxt-schema-org`
184
+ */
185
+ ["schemaOrg"]?: typeof import("nuxt-schema-org").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
186
+ /**
187
+ * Configuration for `nuxt-link-checker`
188
+ */
189
+ ["linkChecker"]?: typeof import("nuxt-link-checker").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
190
+ /**
191
+ * Configuration for `nuxt-seo-utils`
192
+ */
193
+ ["seo"]?: typeof import("nuxt-seo-utils").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
194
+ /**
195
+ * Configuration for `@nuxtjs/seo`
196
+ */
197
+ ["nuxtseo"]?: typeof import("@nuxtjs/seo").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
198
+ /**
199
+ * Configuration for `@nuxtjs/mdc`
200
+ */
201
+ ["mdc"]?: typeof import("@nuxtjs/mdc").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
202
+ /**
203
+ * Configuration for `@nuxt/content`
204
+ */
205
+ ["content"]?: typeof import("@nuxt/content").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
206
+ /**
207
+ * Configuration for `nuxt-auth-utils`
208
+ */
209
+ ["auth"]?: typeof import("nuxt-auth-utils").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
74
210
  /**
75
211
  * Configuration for `@nuxt/test-utils/module`
76
212
  */
@@ -83,7 +219,7 @@ declare module '@nuxt/schema' {
83
219
  * Configuration for `@nuxt/telemetry`
84
220
  */
85
221
  ["telemetry"]?: typeof import("@nuxt/telemetry").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
86
- modules?: (undefined | null | false | NuxtModule<any> | string | [NuxtModule | string, Record<string, any>] | ["@nuxt/eslint", Exclude<NuxtConfig["eslint"], boolean>] | ["@nuxt/fonts", Exclude<NuxtConfig["fonts"], boolean>] | ["@nuxt/image", Exclude<NuxtConfig["image"], boolean>] | ["@pinia/nuxt", Exclude<NuxtConfig["pinia"], boolean>] | ["@nuxt/scripts", Exclude<NuxtConfig["scripts"], boolean>] | ["nuxt-security", Exclude<NuxtConfig["security"], boolean>] | ["@vueuse/nuxt", Exclude<NuxtConfig["vueuse"], boolean>] | ["@nuxt/test-utils/module", Exclude<NuxtConfig["testUtils"], boolean>] | ["@nuxt/devtools", Exclude<NuxtConfig["devtools"], boolean>] | ["@nuxt/telemetry", Exclude<NuxtConfig["telemetry"], boolean>])[],
222
+ modules?: (undefined | null | false | NuxtModule<any> | string | [NuxtModule | string, Record<string, any>] | ["@nuxt/eslint", Exclude<NuxtConfig["eslint"], boolean>] | ["@nuxt/fonts", Exclude<NuxtConfig["fonts"], boolean>] | ["@nuxt/image", Exclude<NuxtConfig["image"], boolean>] | ["@pinia/nuxt", Exclude<NuxtConfig["pinia"], boolean>] | ["@nuxt/scripts", Exclude<NuxtConfig["scripts"], boolean>] | ["nuxt-security", Exclude<NuxtConfig["security"], boolean>] | ["@vueuse/nuxt", Exclude<NuxtConfig["vueuse"], boolean>] | ["@nuxt/icon", Exclude<NuxtConfig["icon"], boolean>] | ["@nuxtjs/color-mode", Exclude<NuxtConfig["colorMode"], boolean>] | ["@nuxt/ui", Exclude<NuxtConfig["ui"], boolean>] | ["nuxt-neon", Exclude<NuxtConfig["neon"], boolean>] | ["@nuxtjs/i18n", Exclude<NuxtConfig["i18n"], boolean>] | ["@vueform/nuxt", Exclude<NuxtConfig["vueform"], boolean>] | ["C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt-site-config@3.1.9_magi_f0f38b684fdcd54347382cd1d38f79a6/node_modules/nuxt-site-config/dist/module", Exclude<NuxtConfig["site"], boolean>] | ["@nuxtjs/robots", Exclude<NuxtConfig["robots"], boolean>] | ["@nuxtjs/sitemap", Exclude<NuxtConfig["sitemap"], boolean>] | ["nuxt-og-image", Exclude<NuxtConfig["ogImage"], boolean>] | ["nuxt-schema-org", Exclude<NuxtConfig["schemaOrg"], boolean>] | ["nuxt-link-checker", Exclude<NuxtConfig["linkChecker"], boolean>] | ["nuxt-seo-utils", Exclude<NuxtConfig["seo"], boolean>] | ["@nuxtjs/seo", Exclude<NuxtConfig["nuxtseo"], boolean>] | ["@nuxtjs/mdc", Exclude<NuxtConfig["mdc"], boolean>] | ["@nuxt/content", Exclude<NuxtConfig["content"], boolean>] | ["nuxt-auth-utils", Exclude<NuxtConfig["auth"], boolean>] | ["@nuxt/test-utils/module", Exclude<NuxtConfig["testUtils"], boolean>] | ["@nuxt/devtools", Exclude<NuxtConfig["devtools"], boolean>] | ["@nuxt/telemetry", Exclude<NuxtConfig["telemetry"], boolean>])[],
87
223
  }
88
224
  }
89
225
  declare module 'nuxt/schema' {
@@ -123,6 +259,91 @@ declare module 'nuxt/schema' {
123
259
  * @see https://www.npmjs.com/package/@vueuse/nuxt
124
260
  */
125
261
  ["vueuse"]: typeof import("@vueuse/nuxt").default extends NuxtModule<infer O> ? O : Record<string, any>
262
+ /**
263
+ * Configuration for `@nuxt/icon`
264
+ * @see https://www.npmjs.com/package/@nuxt/icon
265
+ */
266
+ ["icon"]: typeof import("@nuxt/icon").default extends NuxtModule<infer O> ? O : Record<string, any>
267
+ /**
268
+ * Configuration for `@nuxtjs/color-mode`
269
+ * @see https://www.npmjs.com/package/@nuxtjs/color-mode
270
+ */
271
+ ["colorMode"]: typeof import("@nuxtjs/color-mode").default extends NuxtModule<infer O> ? O : Record<string, any>
272
+ /**
273
+ * Configuration for `@nuxt/ui`
274
+ * @see https://ui.nuxt.com/getting-started/installation/nuxt
275
+ */
276
+ ["ui"]: typeof import("@nuxt/ui").default extends NuxtModule<infer O> ? O : Record<string, any>
277
+ /**
278
+ * Configuration for `nuxt-neon`
279
+ * @see https://www.npmjs.com/package/nuxt-neon
280
+ */
281
+ ["neon"]: typeof import("nuxt-neon").default extends NuxtModule<infer O> ? O : Record<string, any>
282
+ /**
283
+ * Configuration for `@nuxtjs/i18n`
284
+ * @see https://www.npmjs.com/package/@nuxtjs/i18n
285
+ */
286
+ ["i18n"]: typeof import("@nuxtjs/i18n").default extends NuxtModule<infer O> ? O : Record<string, any>
287
+ /**
288
+ * Configuration for `@vueform/nuxt`
289
+ * @see https://www.npmjs.com/package/@vueform/nuxt
290
+ */
291
+ ["vueform"]: typeof import("@vueform/nuxt").default extends NuxtModule<infer O> ? O : Record<string, any>
292
+ /**
293
+ * Configuration for `C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt-site-config@3.1.9_magi_f0f38b684fdcd54347382cd1d38f79a6/node_modules/nuxt-site-config/dist/module`
294
+ * @see https://www.npmjs.com/package/C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt-site-config@3.1.9_magi_f0f38b684fdcd54347382cd1d38f79a6/node_modules/nuxt-site-config/dist/module
295
+ */
296
+ ["site"]: typeof import("C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt-site-config@3.1.9_magi_f0f38b684fdcd54347382cd1d38f79a6/node_modules/nuxt-site-config/dist/module").default extends NuxtModule<infer O> ? O : Record<string, any>
297
+ /**
298
+ * Configuration for `@nuxtjs/robots`
299
+ * @see https://www.npmjs.com/package/@nuxtjs/robots
300
+ */
301
+ ["robots"]: typeof import("@nuxtjs/robots").default extends NuxtModule<infer O> ? O : Record<string, any>
302
+ /**
303
+ * Configuration for `@nuxtjs/sitemap`
304
+ * @see https://www.npmjs.com/package/@nuxtjs/sitemap
305
+ */
306
+ ["sitemap"]: typeof import("@nuxtjs/sitemap").default extends NuxtModule<infer O> ? O : Record<string, any>
307
+ /**
308
+ * Configuration for `nuxt-og-image`
309
+ * @see https://www.npmjs.com/package/nuxt-og-image
310
+ */
311
+ ["ogImage"]: typeof import("nuxt-og-image").default extends NuxtModule<infer O> ? O : Record<string, any>
312
+ /**
313
+ * Configuration for `nuxt-schema-org`
314
+ * @see https://www.npmjs.com/package/nuxt-schema-org
315
+ */
316
+ ["schemaOrg"]: typeof import("nuxt-schema-org").default extends NuxtModule<infer O> ? O : Record<string, any>
317
+ /**
318
+ * Configuration for `nuxt-link-checker`
319
+ * @see https://www.npmjs.com/package/nuxt-link-checker
320
+ */
321
+ ["linkChecker"]: typeof import("nuxt-link-checker").default extends NuxtModule<infer O> ? O : Record<string, any>
322
+ /**
323
+ * Configuration for `nuxt-seo-utils`
324
+ * @see https://www.npmjs.com/package/nuxt-seo-utils
325
+ */
326
+ ["seo"]: typeof import("nuxt-seo-utils").default extends NuxtModule<infer O> ? O : Record<string, any>
327
+ /**
328
+ * Configuration for `@nuxtjs/seo`
329
+ * @see https://www.npmjs.com/package/@nuxtjs/seo
330
+ */
331
+ ["nuxtseo"]: typeof import("@nuxtjs/seo").default extends NuxtModule<infer O> ? O : Record<string, any>
332
+ /**
333
+ * Configuration for `@nuxtjs/mdc`
334
+ * @see https://www.npmjs.com/package/@nuxtjs/mdc
335
+ */
336
+ ["mdc"]: typeof import("@nuxtjs/mdc").default extends NuxtModule<infer O> ? O : Record<string, any>
337
+ /**
338
+ * Configuration for `@nuxt/content`
339
+ * @see https://content.nuxt.com
340
+ */
341
+ ["content"]: typeof import("@nuxt/content").default extends NuxtModule<infer O> ? O : Record<string, any>
342
+ /**
343
+ * Configuration for `nuxt-auth-utils`
344
+ * @see https://www.npmjs.com/package/nuxt-auth-utils
345
+ */
346
+ ["auth"]: typeof import("nuxt-auth-utils").default extends NuxtModule<infer O> ? O : Record<string, any>
126
347
  /**
127
348
  * Configuration for `@nuxt/test-utils/module`
128
349
  * @see https://www.npmjs.com/package/@nuxt/test-utils/module
@@ -175,6 +396,91 @@ declare module 'nuxt/schema' {
175
396
  * @see https://www.npmjs.com/package/@vueuse/nuxt
176
397
  */
177
398
  ["vueuse"]?: typeof import("@vueuse/nuxt").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
399
+ /**
400
+ * Configuration for `@nuxt/icon`
401
+ * @see https://www.npmjs.com/package/@nuxt/icon
402
+ */
403
+ ["icon"]?: typeof import("@nuxt/icon").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
404
+ /**
405
+ * Configuration for `@nuxtjs/color-mode`
406
+ * @see https://www.npmjs.com/package/@nuxtjs/color-mode
407
+ */
408
+ ["colorMode"]?: typeof import("@nuxtjs/color-mode").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
409
+ /**
410
+ * Configuration for `@nuxt/ui`
411
+ * @see https://ui.nuxt.com/getting-started/installation/nuxt
412
+ */
413
+ ["ui"]?: typeof import("@nuxt/ui").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
414
+ /**
415
+ * Configuration for `nuxt-neon`
416
+ * @see https://www.npmjs.com/package/nuxt-neon
417
+ */
418
+ ["neon"]?: typeof import("nuxt-neon").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
419
+ /**
420
+ * Configuration for `@nuxtjs/i18n`
421
+ * @see https://www.npmjs.com/package/@nuxtjs/i18n
422
+ */
423
+ ["i18n"]?: typeof import("@nuxtjs/i18n").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
424
+ /**
425
+ * Configuration for `@vueform/nuxt`
426
+ * @see https://www.npmjs.com/package/@vueform/nuxt
427
+ */
428
+ ["vueform"]?: typeof import("@vueform/nuxt").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
429
+ /**
430
+ * Configuration for `C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt-site-config@3.1.9_magi_f0f38b684fdcd54347382cd1d38f79a6/node_modules/nuxt-site-config/dist/module`
431
+ * @see https://www.npmjs.com/package/C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt-site-config@3.1.9_magi_f0f38b684fdcd54347382cd1d38f79a6/node_modules/nuxt-site-config/dist/module
432
+ */
433
+ ["site"]?: typeof import("C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt-site-config@3.1.9_magi_f0f38b684fdcd54347382cd1d38f79a6/node_modules/nuxt-site-config/dist/module").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
434
+ /**
435
+ * Configuration for `@nuxtjs/robots`
436
+ * @see https://www.npmjs.com/package/@nuxtjs/robots
437
+ */
438
+ ["robots"]?: typeof import("@nuxtjs/robots").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
439
+ /**
440
+ * Configuration for `@nuxtjs/sitemap`
441
+ * @see https://www.npmjs.com/package/@nuxtjs/sitemap
442
+ */
443
+ ["sitemap"]?: typeof import("@nuxtjs/sitemap").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
444
+ /**
445
+ * Configuration for `nuxt-og-image`
446
+ * @see https://www.npmjs.com/package/nuxt-og-image
447
+ */
448
+ ["ogImage"]?: typeof import("nuxt-og-image").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
449
+ /**
450
+ * Configuration for `nuxt-schema-org`
451
+ * @see https://www.npmjs.com/package/nuxt-schema-org
452
+ */
453
+ ["schemaOrg"]?: typeof import("nuxt-schema-org").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
454
+ /**
455
+ * Configuration for `nuxt-link-checker`
456
+ * @see https://www.npmjs.com/package/nuxt-link-checker
457
+ */
458
+ ["linkChecker"]?: typeof import("nuxt-link-checker").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
459
+ /**
460
+ * Configuration for `nuxt-seo-utils`
461
+ * @see https://www.npmjs.com/package/nuxt-seo-utils
462
+ */
463
+ ["seo"]?: typeof import("nuxt-seo-utils").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
464
+ /**
465
+ * Configuration for `@nuxtjs/seo`
466
+ * @see https://www.npmjs.com/package/@nuxtjs/seo
467
+ */
468
+ ["nuxtseo"]?: typeof import("@nuxtjs/seo").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
469
+ /**
470
+ * Configuration for `@nuxtjs/mdc`
471
+ * @see https://www.npmjs.com/package/@nuxtjs/mdc
472
+ */
473
+ ["mdc"]?: typeof import("@nuxtjs/mdc").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
474
+ /**
475
+ * Configuration for `@nuxt/content`
476
+ * @see https://content.nuxt.com
477
+ */
478
+ ["content"]?: typeof import("@nuxt/content").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
479
+ /**
480
+ * Configuration for `nuxt-auth-utils`
481
+ * @see https://www.npmjs.com/package/nuxt-auth-utils
482
+ */
483
+ ["auth"]?: typeof import("nuxt-auth-utils").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
178
484
  /**
179
485
  * Configuration for `@nuxt/test-utils/module`
180
486
  * @see https://www.npmjs.com/package/@nuxt/test-utils/module
@@ -190,7 +496,7 @@ declare module 'nuxt/schema' {
190
496
  * @see https://www.npmjs.com/package/@nuxt/telemetry
191
497
  */
192
498
  ["telemetry"]?: typeof import("@nuxt/telemetry").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
193
- modules?: (undefined | null | false | NuxtModule<any> | string | [NuxtModule | string, Record<string, any>] | ["@nuxt/eslint", Exclude<NuxtConfig["eslint"], boolean>] | ["@nuxt/fonts", Exclude<NuxtConfig["fonts"], boolean>] | ["@nuxt/image", Exclude<NuxtConfig["image"], boolean>] | ["@pinia/nuxt", Exclude<NuxtConfig["pinia"], boolean>] | ["@nuxt/scripts", Exclude<NuxtConfig["scripts"], boolean>] | ["nuxt-security", Exclude<NuxtConfig["security"], boolean>] | ["@vueuse/nuxt", Exclude<NuxtConfig["vueuse"], boolean>] | ["@nuxt/test-utils/module", Exclude<NuxtConfig["testUtils"], boolean>] | ["@nuxt/devtools", Exclude<NuxtConfig["devtools"], boolean>] | ["@nuxt/telemetry", Exclude<NuxtConfig["telemetry"], boolean>])[],
499
+ modules?: (undefined | null | false | NuxtModule<any> | string | [NuxtModule | string, Record<string, any>] | ["@nuxt/eslint", Exclude<NuxtConfig["eslint"], boolean>] | ["@nuxt/fonts", Exclude<NuxtConfig["fonts"], boolean>] | ["@nuxt/image", Exclude<NuxtConfig["image"], boolean>] | ["@pinia/nuxt", Exclude<NuxtConfig["pinia"], boolean>] | ["@nuxt/scripts", Exclude<NuxtConfig["scripts"], boolean>] | ["nuxt-security", Exclude<NuxtConfig["security"], boolean>] | ["@vueuse/nuxt", Exclude<NuxtConfig["vueuse"], boolean>] | ["@nuxt/icon", Exclude<NuxtConfig["icon"], boolean>] | ["@nuxtjs/color-mode", Exclude<NuxtConfig["colorMode"], boolean>] | ["@nuxt/ui", Exclude<NuxtConfig["ui"], boolean>] | ["nuxt-neon", Exclude<NuxtConfig["neon"], boolean>] | ["@nuxtjs/i18n", Exclude<NuxtConfig["i18n"], boolean>] | ["@vueform/nuxt", Exclude<NuxtConfig["vueform"], boolean>] | ["C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt-site-config@3.1.9_magi_f0f38b684fdcd54347382cd1d38f79a6/node_modules/nuxt-site-config/dist/module", Exclude<NuxtConfig["site"], boolean>] | ["@nuxtjs/robots", Exclude<NuxtConfig["robots"], boolean>] | ["@nuxtjs/sitemap", Exclude<NuxtConfig["sitemap"], boolean>] | ["nuxt-og-image", Exclude<NuxtConfig["ogImage"], boolean>] | ["nuxt-schema-org", Exclude<NuxtConfig["schemaOrg"], boolean>] | ["nuxt-link-checker", Exclude<NuxtConfig["linkChecker"], boolean>] | ["nuxt-seo-utils", Exclude<NuxtConfig["seo"], boolean>] | ["@nuxtjs/seo", Exclude<NuxtConfig["nuxtseo"], boolean>] | ["@nuxtjs/mdc", Exclude<NuxtConfig["mdc"], boolean>] | ["@nuxt/content", Exclude<NuxtConfig["content"], boolean>] | ["nuxt-auth-utils", Exclude<NuxtConfig["auth"], boolean>] | ["@nuxt/test-utils/module", Exclude<NuxtConfig["testUtils"], boolean>] | ["@nuxt/devtools", Exclude<NuxtConfig["devtools"], boolean>] | ["@nuxt/telemetry", Exclude<NuxtConfig["telemetry"], boolean>])[],
194
500
  }
195
501
  interface RuntimeConfig {
196
502
  app: {
@@ -352,6 +658,558 @@ declare module 'nuxt/schema' {
352
658
 
353
659
  sri: boolean,
354
660
  },
661
+
662
+ icon: {
663
+ serverKnownCssClasses: Array<any>,
664
+ },
665
+
666
+ neonHost: string,
667
+
668
+ neonUser: string,
669
+
670
+ neonPass: string,
671
+
672
+ neonDB: string,
673
+
674
+ sitemap: {
675
+ isI18nMapped: boolean,
676
+
677
+ sitemapName: string,
678
+
679
+ isMultiSitemap: boolean,
680
+
681
+ excludeAppSources: Array<any>,
682
+
683
+ cacheMaxAgeSeconds: number,
684
+
685
+ autoLastmod: boolean,
686
+
687
+ defaultSitemapsChunkSize: number,
688
+
689
+ minify: boolean,
690
+
691
+ sortEntries: boolean,
692
+
693
+ debug: boolean,
694
+
695
+ discoverImages: boolean,
696
+
697
+ discoverVideos: boolean,
698
+
699
+ sitemapsPathPrefix: string,
700
+
701
+ isNuxtContentDocumentDriven: boolean,
702
+
703
+ xsl: string,
704
+
705
+ xslTips: boolean,
706
+
707
+ xslColumns: Array<{
708
+
709
+ }>,
710
+
711
+ credits: boolean,
712
+
713
+ version: string,
714
+
715
+ sitemaps: {
716
+ "sitemap.xml": {
717
+ sitemapName: string,
718
+
719
+ route: string,
720
+
721
+ defaults: any,
722
+
723
+ include: Array<any>,
724
+
725
+ exclude: Array<string>,
726
+
727
+ includeAppSources: boolean,
728
+ },
729
+ },
730
+ },
731
+
732
+ content: {
733
+ databaseVersion: string,
734
+
735
+ version: string,
736
+
737
+ database: {
738
+ type: string,
739
+
740
+ filename: string,
741
+ },
742
+
743
+ localDatabase: {
744
+ type: string,
745
+
746
+ filename: string,
747
+ },
748
+
749
+ integrityCheck: boolean,
750
+ },
751
+
752
+ session: {
753
+ name: string,
754
+
755
+ password: string,
756
+
757
+ cookie: {
758
+ sameSite: string,
759
+ },
760
+ },
761
+
762
+ hash: {
763
+ scrypt: any,
764
+ },
765
+
766
+ webauthn: {
767
+ register: any,
768
+
769
+ authenticate: any,
770
+ },
771
+
772
+ oauth: {
773
+ gitea: {
774
+ clientId: string,
775
+
776
+ clientSecret: string,
777
+
778
+ redirectURL: string,
779
+
780
+ baseURL: string,
781
+ },
782
+
783
+ github: {
784
+ clientId: string,
785
+
786
+ clientSecret: string,
787
+
788
+ redirectURL: string,
789
+ },
790
+
791
+ gitlab: {
792
+ clientId: string,
793
+
794
+ clientSecret: string,
795
+
796
+ redirectURL: string,
797
+
798
+ baseURL: string,
799
+ },
800
+
801
+ spotify: {
802
+ clientId: string,
803
+
804
+ clientSecret: string,
805
+
806
+ redirectURL: string,
807
+ },
808
+
809
+ google: {
810
+ clientId: string,
811
+
812
+ clientSecret: string,
813
+
814
+ redirectURL: string,
815
+ },
816
+
817
+ twitch: {
818
+ clientId: string,
819
+
820
+ clientSecret: string,
821
+
822
+ redirectURL: string,
823
+ },
824
+
825
+ auth0: {
826
+ clientId: string,
827
+
828
+ clientSecret: string,
829
+
830
+ domain: string,
831
+
832
+ audience: string,
833
+
834
+ redirectURL: string,
835
+ },
836
+
837
+ workos: {
838
+ clientId: string,
839
+
840
+ clientSecret: string,
841
+
842
+ connectionId: string,
843
+
844
+ screenHint: string,
845
+
846
+ redirectURL: string,
847
+ },
848
+
849
+ microsoft: {
850
+ clientId: string,
851
+
852
+ clientSecret: string,
853
+
854
+ tenant: string,
855
+
856
+ scope: Array<any>,
857
+
858
+ authorizationURL: string,
859
+
860
+ tokenURL: string,
861
+
862
+ userURL: string,
863
+
864
+ redirectURL: string,
865
+ },
866
+
867
+ azureb2c: {
868
+ clientId: string,
869
+
870
+ policy: string,
871
+
872
+ tenant: string,
873
+
874
+ scope: Array<any>,
875
+
876
+ authorizationURL: string,
877
+
878
+ tokenURL: string,
879
+
880
+ userURL: string,
881
+
882
+ redirectURL: string,
883
+ },
884
+
885
+ discord: {
886
+ clientId: string,
887
+
888
+ clientSecret: string,
889
+
890
+ redirectURL: string,
891
+ },
892
+
893
+ battledotnet: {
894
+ clientId: string,
895
+
896
+ clientSecret: string,
897
+
898
+ redirectURL: string,
899
+ },
900
+
901
+ bluesky: {
902
+ clientMetadataFilename: string,
903
+
904
+ clientName: string,
905
+
906
+ clientUri: string,
907
+
908
+ logoUri: string,
909
+
910
+ policyUri: string,
911
+
912
+ tosUri: string,
913
+
914
+ scope: Array<string>,
915
+
916
+ grantTypes: Array<string>,
917
+
918
+ responseTypes: Array<string>,
919
+
920
+ applicationType: string,
921
+
922
+ redirectUris: Array<any>,
923
+
924
+ dpopBoundAccessTokens: boolean,
925
+
926
+ tokenEndpointAuthMethod: string,
927
+ },
928
+
929
+ keycloak: {
930
+ clientId: string,
931
+
932
+ clientSecret: string,
933
+
934
+ serverUrl: string,
935
+
936
+ serverUrlInternal: string,
937
+
938
+ realm: string,
939
+
940
+ redirectURL: string,
941
+ },
942
+
943
+ linear: {
944
+ clientId: string,
945
+
946
+ clientSecret: string,
947
+
948
+ redirectURL: string,
949
+ },
950
+
951
+ linkedin: {
952
+ clientId: string,
953
+
954
+ clientSecret: string,
955
+
956
+ redirectURL: string,
957
+ },
958
+
959
+ cognito: {
960
+ clientId: string,
961
+
962
+ clientSecret: string,
963
+
964
+ region: string,
965
+
966
+ userPoolId: string,
967
+
968
+ redirectURL: string,
969
+ },
970
+
971
+ facebook: {
972
+ clientId: string,
973
+
974
+ clientSecret: string,
975
+
976
+ redirectURL: string,
977
+ },
978
+
979
+ instagram: {
980
+ clientId: string,
981
+
982
+ clientSecret: string,
983
+
984
+ redirectURL: string,
985
+ },
986
+
987
+ paypal: {
988
+ clientId: string,
989
+
990
+ clientSecret: string,
991
+
992
+ redirectURL: string,
993
+ },
994
+
995
+ steam: {
996
+ apiKey: string,
997
+
998
+ redirectURL: string,
999
+ },
1000
+
1001
+ x: {
1002
+ clientId: string,
1003
+
1004
+ clientSecret: string,
1005
+
1006
+ redirectURL: string,
1007
+ },
1008
+
1009
+ xsuaa: {
1010
+ clientId: string,
1011
+
1012
+ clientSecret: string,
1013
+
1014
+ domain: string,
1015
+
1016
+ redirectURL: string,
1017
+ },
1018
+
1019
+ vk: {
1020
+ clientId: string,
1021
+
1022
+ clientSecret: string,
1023
+
1024
+ redirectURL: string,
1025
+ },
1026
+
1027
+ yandex: {
1028
+ clientId: string,
1029
+
1030
+ clientSecret: string,
1031
+
1032
+ redirectURL: string,
1033
+ },
1034
+
1035
+ tiktok: {
1036
+ clientKey: string,
1037
+
1038
+ clientSecret: string,
1039
+
1040
+ redirectURL: string,
1041
+ },
1042
+
1043
+ dropbox: {
1044
+ clientId: string,
1045
+
1046
+ clientSecret: string,
1047
+
1048
+ redirectURL: string,
1049
+ },
1050
+
1051
+ polar: {
1052
+ clientId: string,
1053
+
1054
+ clientSecret: string,
1055
+
1056
+ redirectURL: string,
1057
+ },
1058
+
1059
+ zitadel: {
1060
+ clientId: string,
1061
+
1062
+ clientSecret: string,
1063
+
1064
+ domain: string,
1065
+
1066
+ redirectURL: string,
1067
+ },
1068
+
1069
+ authentik: {
1070
+ clientId: string,
1071
+
1072
+ clientSecret: string,
1073
+
1074
+ domain: string,
1075
+
1076
+ redirectURL: string,
1077
+ },
1078
+
1079
+ seznam: {
1080
+ clientId: string,
1081
+
1082
+ clientSecret: string,
1083
+
1084
+ redirectURL: string,
1085
+ },
1086
+
1087
+ strava: {
1088
+ clientId: string,
1089
+
1090
+ clientSecret: string,
1091
+
1092
+ redirectURL: string,
1093
+ },
1094
+
1095
+ hubspot: {
1096
+ clientId: string,
1097
+
1098
+ clientSecret: string,
1099
+
1100
+ redirectURL: string,
1101
+ },
1102
+
1103
+ line: {
1104
+ clientId: string,
1105
+
1106
+ clientSecret: string,
1107
+
1108
+ redirectURL: string,
1109
+ },
1110
+
1111
+ atlassian: {
1112
+ clientId: string,
1113
+
1114
+ clientSecret: string,
1115
+
1116
+ redirectURL: string,
1117
+ },
1118
+
1119
+ apple: {
1120
+ teamId: string,
1121
+
1122
+ keyId: string,
1123
+
1124
+ privateKey: string,
1125
+
1126
+ redirectURL: string,
1127
+
1128
+ clientId: string,
1129
+ },
1130
+
1131
+ kick: {
1132
+ clientId: string,
1133
+
1134
+ clientSecret: string,
1135
+
1136
+ redirectURL: string,
1137
+ },
1138
+
1139
+ livechat: {
1140
+ clientId: string,
1141
+
1142
+ clientSecret: string,
1143
+ },
1144
+
1145
+ salesforce: {
1146
+ clientId: string,
1147
+
1148
+ clientSecret: string,
1149
+
1150
+ redirectURL: string,
1151
+
1152
+ baseURL: string,
1153
+
1154
+ scope: string,
1155
+ },
1156
+
1157
+ slack: {
1158
+ clientId: string,
1159
+
1160
+ clientSecret: string,
1161
+
1162
+ redirectURL: string,
1163
+
1164
+ scope: string,
1165
+ },
1166
+
1167
+ heroku: {
1168
+ clientId: string,
1169
+
1170
+ clientSecret: string,
1171
+
1172
+ redirectURL: string,
1173
+
1174
+ scope: string,
1175
+ },
1176
+ },
1177
+
1178
+ "nuxt-site-config": {
1179
+ stack: Array<{
1180
+
1181
+ }>,
1182
+
1183
+ version: string,
1184
+
1185
+ debug: boolean,
1186
+
1187
+ multiTenancy: Array<any>,
1188
+ },
1189
+
1190
+ "nuxt-robots": {
1191
+ version: string,
1192
+
1193
+ isNuxtContentV2: boolean,
1194
+
1195
+ debug: boolean,
1196
+
1197
+ credits: boolean,
1198
+
1199
+ groups: Array<{
1200
+
1201
+ }>,
1202
+
1203
+ sitemap: Array<string>,
1204
+
1205
+ header: boolean,
1206
+
1207
+ robotsEnabledValue: string,
1208
+
1209
+ robotsDisabledValue: string,
1210
+
1211
+ cacheControl: string,
1212
+ },
355
1213
  }
356
1214
  interface PublicRuntimeConfig {
357
1215
  ignis: {
@@ -441,6 +1299,130 @@ declare module 'nuxt/schema' {
441
1299
  trigger: string,
442
1300
  },
443
1301
  },
1302
+
1303
+ neonDB: string,
1304
+
1305
+ neonSSLMode: string,
1306
+
1307
+ neonRawWarning: boolean,
1308
+
1309
+ neonDebugSQL: boolean,
1310
+
1311
+ "nuxt-link-checker": {
1312
+ version: string,
1313
+
1314
+ hasSitemapModule: boolean,
1315
+
1316
+ rootDir: string,
1317
+
1318
+ excludeLinks: Array<any>,
1319
+
1320
+ skipInspections: Array<any>,
1321
+
1322
+ fetchTimeout: number,
1323
+
1324
+ showLiveInspections: boolean,
1325
+
1326
+ fetchRemoteUrls: boolean,
1327
+ },
1328
+
1329
+ "seo-utils": {
1330
+ canonicalQueryWhitelist: Array<string>,
1331
+
1332
+ canonicalLowercase: boolean,
1333
+ },
1334
+
1335
+ content: {
1336
+ wsUrl: string,
1337
+ },
1338
+
1339
+ mdc: {
1340
+ components: {
1341
+ prose: boolean,
1342
+
1343
+ map: any,
1344
+ },
1345
+
1346
+ headings: {
1347
+ anchorLinks: {
1348
+ h1: boolean,
1349
+
1350
+ h2: boolean,
1351
+
1352
+ h3: boolean,
1353
+
1354
+ h4: boolean,
1355
+
1356
+ h5: boolean,
1357
+
1358
+ h6: boolean,
1359
+ },
1360
+ },
1361
+ },
1362
+
1363
+ i18n: {
1364
+ baseUrl: string,
1365
+
1366
+ defaultLocale: string,
1367
+
1368
+ defaultDirection: string,
1369
+
1370
+ strategy: string,
1371
+
1372
+ lazy: boolean,
1373
+
1374
+ rootRedirect: any,
1375
+
1376
+ routesNameSeparator: string,
1377
+
1378
+ defaultLocaleRouteNameSuffix: string,
1379
+
1380
+ skipSettingLocaleOnNavigate: boolean,
1381
+
1382
+ differentDomains: boolean,
1383
+
1384
+ trailingSlash: boolean,
1385
+
1386
+ locales: Array<string>,
1387
+
1388
+ detectBrowserLanguage: {
1389
+ alwaysRedirect: boolean,
1390
+
1391
+ cookieCrossOrigin: boolean,
1392
+
1393
+ cookieDomain: any,
1394
+
1395
+ cookieKey: string,
1396
+
1397
+ cookieSecure: boolean,
1398
+
1399
+ fallbackLocale: string,
1400
+
1401
+ redirectOn: string,
1402
+
1403
+ useCookie: boolean,
1404
+ },
1405
+
1406
+ experimental: {
1407
+ localeDetector: string,
1408
+
1409
+ switchLocalePathLinkSSR: boolean,
1410
+
1411
+ autoImportTranslationFunctions: boolean,
1412
+
1413
+ typedPages: boolean,
1414
+
1415
+ typedOptionsAndMessages: boolean,
1416
+
1417
+ generatedLocaleFilePathFormat: string,
1418
+
1419
+ alternateLinkCanonicalQueries: boolean,
1420
+
1421
+ hmr: boolean,
1422
+ },
1423
+
1424
+ multiDomainLocales: boolean,
1425
+ },
444
1426
  }
445
1427
  }
446
1428
  declare module 'vue' {