nuxt-ignis 0.2.5 → 0.3.1

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 (140) hide show
  1. package/.data/content/contents.sqlite +0 -0
  2. package/.env +43 -0
  3. package/.nuxt/app.config.mjs +18 -0
  4. package/.nuxt/component-chunk.mjs +1 -0
  5. package/.nuxt/components.d.ts +322 -0
  6. package/.nuxt/content/components.ts +51 -0
  7. package/.nuxt/content/database.compressed.mjs +1 -0
  8. package/.nuxt/content/manifest.ts +33 -0
  9. package/.nuxt/content/sql_dump +6 -0
  10. package/.nuxt/content/types.d.ts +13 -0
  11. package/.nuxt/dist/server/client.manifest.json +18 -0
  12. package/.nuxt/dist/server/client.manifest.mjs +18 -0
  13. package/.nuxt/dist/server/server.mjs +1 -0
  14. package/.nuxt/eslint-typegen.d.ts +9401 -0
  15. package/.nuxt/eslint.config.d.mts +9 -0
  16. package/.nuxt/eslint.config.mjs +53 -0
  17. package/.nuxt/i18n.options.mjs +165 -0
  18. package/.nuxt/imports.d.ts +82 -0
  19. package/.nuxt/manifest/latest.json +1 -0
  20. package/.nuxt/manifest/meta/dev.json +1 -0
  21. package/.nuxt/mdc-configs.mjs +8 -0
  22. package/.nuxt/mdc-highlighter.mjs +213 -0
  23. package/.nuxt/mdc-image-component.mjs +1 -0
  24. package/.nuxt/mdc-imports.mjs +12 -0
  25. package/.nuxt/module/@nuxtjs-sitemap.d.ts +28 -0
  26. package/.nuxt/module/nuxt-robots.d.ts +35 -0
  27. package/.nuxt/module/nuxt-seo-utils.assets.d.ts +25 -0
  28. package/.nuxt/module/nuxt-seo-utils.d.ts +22 -0
  29. package/.nuxt/module/nuxt-site-config.d.ts +43 -0
  30. package/.nuxt/modules/@nuxt-scripts.d.ts +13 -0
  31. package/.nuxt/nitro.json +17 -0
  32. package/.nuxt/nuxt-fonts-global.css +0 -0
  33. package/.nuxt/nuxt-i18n-logger.mjs +1 -0
  34. package/.nuxt/nuxt-icon-client-bundle.mjs +1 -0
  35. package/.nuxt/nuxt-icon-server-bundle.mjs +15 -0
  36. package/.nuxt/nuxt.d.ts +49 -0
  37. package/.nuxt/nuxt.json +9 -0
  38. package/.nuxt/schema/nuxt.schema.d.ts +17 -0
  39. package/.nuxt/schema/nuxt.schema.json +3 -0
  40. package/.nuxt/tailwind/postcss.mjs +15 -0
  41. package/.nuxt/tsconfig.json +374 -0
  42. package/.nuxt/tsconfig.server.json +292 -0
  43. package/.nuxt/types/app-defaults.d.ts +7 -0
  44. package/.nuxt/types/app.config.d.ts +31 -0
  45. package/.nuxt/types/build.d.ts +27 -0
  46. package/.nuxt/types/builder-env.d.ts +1 -0
  47. package/.nuxt/types/i18n-plugin.d.ts +104 -0
  48. package/.nuxt/types/imports.d.ts +899 -0
  49. package/.nuxt/types/layouts.d.ts +7 -0
  50. package/.nuxt/types/middleware.d.ts +7 -0
  51. package/.nuxt/types/neon.d.ts +35 -0
  52. package/.nuxt/types/nitro-config.d.ts +14 -0
  53. package/.nuxt/types/nitro-imports.d.ts +405 -0
  54. package/.nuxt/types/nitro-middleware.d.ts +6 -0
  55. package/.nuxt/types/nitro-nuxt.d.ts +34 -0
  56. package/.nuxt/types/nitro-routes.d.ts +81 -0
  57. package/.nuxt/types/nitro.d.ts +3 -0
  58. package/.nuxt/types/plugins.d.ts +57 -0
  59. package/.nuxt/types/schema.d.ts +1372 -0
  60. package/.nuxt/types/ui.d.ts +35 -0
  61. package/.nuxt/types/vue-shim.d.ts +0 -0
  62. package/.nuxt/ui/accordion.ts +20 -0
  63. package/.nuxt/ui/alert.ts +264 -0
  64. package/.nuxt/ui/avatar-group.ts +52 -0
  65. package/.nuxt/ui/avatar.ts +54 -0
  66. package/.nuxt/ui/badge.ts +263 -0
  67. package/.nuxt/ui/breadcrumb.ts +45 -0
  68. package/.nuxt/ui/button-group.ts +16 -0
  69. package/.nuxt/ui/button.ts +378 -0
  70. package/.nuxt/ui/calendar.ts +103 -0
  71. package/.nuxt/ui/card.ts +34 -0
  72. package/.nuxt/ui/carousel.ts +38 -0
  73. package/.nuxt/ui/checkbox-group.ts +204 -0
  74. package/.nuxt/ui/checkbox.ts +236 -0
  75. package/.nuxt/ui/chip.ts +96 -0
  76. package/.nuxt/ui/collapsible.ts +6 -0
  77. package/.nuxt/ui/color-picker.ts +47 -0
  78. package/.nuxt/ui/command-palette.ts +50 -0
  79. package/.nuxt/ui/container.ts +3 -0
  80. package/.nuxt/ui/context-menu.ts +216 -0
  81. package/.nuxt/ui/drawer.ts +126 -0
  82. package/.nuxt/ui/dropdown-menu.ts +217 -0
  83. package/.nuxt/ui/form-field.ts +48 -0
  84. package/.nuxt/ui/form.ts +3 -0
  85. package/.nuxt/ui/index.ts +50 -0
  86. package/.nuxt/ui/input-menu.ts +436 -0
  87. package/.nuxt/ui/input-number.ts +245 -0
  88. package/.nuxt/ui/input.ts +289 -0
  89. package/.nuxt/ui/kbd.ts +31 -0
  90. package/.nuxt/ui/link.ts +22 -0
  91. package/.nuxt/ui/modal.ts +29 -0
  92. package/.nuxt/ui/navigation-menu.ts +501 -0
  93. package/.nuxt/ui/pagination.ts +13 -0
  94. package/.nuxt/ui/pin-input.ts +171 -0
  95. package/.nuxt/ui/popover.ts +6 -0
  96. package/.nuxt/ui/progress.ts +297 -0
  97. package/.nuxt/ui/radio-group.ts +350 -0
  98. package/.nuxt/ui/select-menu.ts +346 -0
  99. package/.nuxt/ui/select.ts +341 -0
  100. package/.nuxt/ui/separator.ts +172 -0
  101. package/.nuxt/ui/skeleton.ts +3 -0
  102. package/.nuxt/ui/slideover.ts +71 -0
  103. package/.nuxt/ui/slider.ts +171 -0
  104. package/.nuxt/ui/stepper.ts +202 -0
  105. package/.nuxt/ui/switch.ts +131 -0
  106. package/.nuxt/ui/table.ts +147 -0
  107. package/.nuxt/ui/tabs.ts +256 -0
  108. package/.nuxt/ui/textarea.ts +294 -0
  109. package/.nuxt/ui/toast.ts +81 -0
  110. package/.nuxt/ui/toaster.ts +91 -0
  111. package/.nuxt/ui/tooltip.ts +9 -0
  112. package/.nuxt/ui/tree.ts +154 -0
  113. package/.nuxt/ui-image-component.ts +1 -0
  114. package/.nuxt/ui.css +143 -0
  115. package/app.vue +16 -36
  116. package/assets/css/nuxt-ui.css +16 -0
  117. package/assets/css/tailwind.css +10 -44
  118. package/components/AppFeature.vue +47 -3
  119. package/components/AppFeatureList.vue +86 -26
  120. package/components/CurrentTime.vue +9 -9
  121. package/components/ignis/IgnisFooter.vue +16 -0
  122. package/components/ignis/IgnisHeader.vue +48 -0
  123. package/components/ignis/IgnisInfo.vue +26 -0
  124. package/composables/useTranslation.ts +11 -4
  125. package/content/second.md +4 -0
  126. package/features.ts +129 -23
  127. package/i18n/i18n.config.ts +2 -2
  128. package/{assets/lang → i18n/locales}/en.json +6 -1
  129. package/i18n/locales/es.json +4 -0
  130. package/nuxt.config.ts +26 -2
  131. package/package.json +71 -79
  132. package/pages/ignis.vue +3 -0
  133. package/pages/index.vue +1 -12
  134. package/tailwind.config.ts +2 -1
  135. package/utils/i18n-sources.ts +20 -2
  136. package/vueform.config.ts +20 -0
  137. package/.gitattributes +0 -2
  138. package/CHANGELOG.md +0 -72
  139. package/LICENSE +0 -21
  140. package/README.md +0 -147
@@ -0,0 +1,1372 @@
1
+ import { NuxtModule, RuntimeConfig } from '@nuxt/schema'
2
+ declare module '@nuxt/schema' {
3
+ interface NuxtOptions {
4
+ /**
5
+ * Configuration for `@nuxt/eslint`
6
+ */
7
+ ["eslint"]: typeof import("@nuxt/eslint").default extends NuxtModule<infer O> ? O : Record<string, any>
8
+ /**
9
+ * Configuration for `@nuxt/fonts`
10
+ */
11
+ ["fonts"]: typeof import("@nuxt/fonts").default extends NuxtModule<infer O> ? O : Record<string, any>
12
+ /**
13
+ * Configuration for `@nuxt/image`
14
+ */
15
+ ["image"]: typeof import("@nuxt/image").default extends NuxtModule<infer O> ? O : Record<string, any>
16
+ /**
17
+ * Configuration for `@pinia/nuxt`
18
+ */
19
+ ["pinia"]: typeof import("@pinia/nuxt").default extends NuxtModule<infer O> ? O : Record<string, any>
20
+ /**
21
+ * Configuration for `@nuxt/scripts`
22
+ */
23
+ ["scripts"]: typeof import("@nuxt/scripts").default extends NuxtModule<infer O> ? O : Record<string, any>
24
+ /**
25
+ * Configuration for `nuxt-security`
26
+ */
27
+ ["security"]: typeof import("nuxt-security").default extends NuxtModule<infer O> ? O : Record<string, any>
28
+ /**
29
+ * Configuration for `@vueuse/nuxt`
30
+ */
31
+ ["vueuse"]: typeof import("@vueuse/nuxt").default extends NuxtModule<infer O> ? O : Record<string, any>
32
+ /**
33
+ * Configuration for `nuxt-neon`
34
+ */
35
+ ["neon"]: typeof import("nuxt-neon").default extends NuxtModule<infer O> ? O : Record<string, any>
36
+ /**
37
+ * Configuration for `@nuxtjs/i18n`
38
+ */
39
+ ["i18n"]: typeof import("@nuxtjs/i18n").default extends NuxtModule<infer O> ? O : Record<string, any>
40
+ /**
41
+ * Configuration for `@vueform/nuxt`
42
+ */
43
+ ["vueform"]: typeof import("@vueform/nuxt").default extends NuxtModule<infer O> ? O : Record<string, any>
44
+ /**
45
+ * Configuration for `C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt-site-config@3.1.9_magi_fc9ec4489b75c78db1aed1033cea2b3a/node_modules/nuxt-site-config/dist/module`
46
+ */
47
+ ["site"]: typeof import("C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt-site-config@3.1.9_magi_fc9ec4489b75c78db1aed1033cea2b3a/node_modules/nuxt-site-config/dist/module").default extends NuxtModule<infer O> ? O : Record<string, any>
48
+ /**
49
+ * Configuration for `@nuxtjs/robots`
50
+ */
51
+ ["robots"]: typeof import("@nuxtjs/robots").default extends NuxtModule<infer O> ? O : Record<string, any>
52
+ /**
53
+ * Configuration for `@nuxtjs/sitemap`
54
+ */
55
+ ["sitemap"]: typeof import("@nuxtjs/sitemap").default extends NuxtModule<infer O> ? O : Record<string, any>
56
+ /**
57
+ * Configuration for `nuxt-og-image`
58
+ */
59
+ ["ogImage"]: typeof import("nuxt-og-image").default extends NuxtModule<infer O> ? O : Record<string, any>
60
+ /**
61
+ * Configuration for `nuxt-schema-org`
62
+ */
63
+ ["schemaOrg"]: typeof import("nuxt-schema-org").default extends NuxtModule<infer O> ? O : Record<string, any>
64
+ /**
65
+ * Configuration for `nuxt-link-checker`
66
+ */
67
+ ["linkChecker"]: typeof import("nuxt-link-checker").default extends NuxtModule<infer O> ? O : Record<string, any>
68
+ /**
69
+ * Configuration for `nuxt-seo-utils`
70
+ */
71
+ ["seo"]: typeof import("nuxt-seo-utils").default extends NuxtModule<infer O> ? O : Record<string, any>
72
+ /**
73
+ * Configuration for `@nuxtjs/seo`
74
+ */
75
+ ["nuxtseo"]: typeof import("@nuxtjs/seo").default extends NuxtModule<infer O> ? O : Record<string, any>
76
+ /**
77
+ * Configuration for `@nuxtjs/mdc`
78
+ */
79
+ ["mdc"]: typeof import("@nuxtjs/mdc").default extends NuxtModule<infer O> ? O : Record<string, any>
80
+ /**
81
+ * Configuration for `@nuxt/content`
82
+ */
83
+ ["content"]: typeof import("@nuxt/content").default extends NuxtModule<infer O> ? O : Record<string, any>
84
+ /**
85
+ * Configuration for `nuxt-auth-utils`
86
+ */
87
+ ["auth"]: typeof import("nuxt-auth-utils").default extends NuxtModule<infer O> ? O : Record<string, any>
88
+ /**
89
+ * Configuration for `@nuxt/test-utils/module`
90
+ */
91
+ ["testUtils"]: typeof import("@nuxt/test-utils/module").default extends NuxtModule<infer O> ? O : Record<string, any>
92
+ /**
93
+ * Configuration for `@nuxt/devtools`
94
+ */
95
+ ["devtools"]: typeof import("@nuxt/devtools").default extends NuxtModule<infer O> ? O : Record<string, any>
96
+ /**
97
+ * Configuration for `@nuxt/telemetry`
98
+ */
99
+ ["telemetry"]: typeof import("@nuxt/telemetry").default extends NuxtModule<infer O> ? O : Record<string, any>
100
+ }
101
+ interface NuxtConfig {
102
+ /**
103
+ * Configuration for `@nuxt/eslint`
104
+ */
105
+ ["eslint"]?: typeof import("@nuxt/eslint").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
106
+ /**
107
+ * Configuration for `@nuxt/fonts`
108
+ */
109
+ ["fonts"]?: typeof import("@nuxt/fonts").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
110
+ /**
111
+ * Configuration for `@nuxt/image`
112
+ */
113
+ ["image"]?: typeof import("@nuxt/image").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
114
+ /**
115
+ * Configuration for `@pinia/nuxt`
116
+ */
117
+ ["pinia"]?: typeof import("@pinia/nuxt").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
118
+ /**
119
+ * Configuration for `@nuxt/scripts`
120
+ */
121
+ ["scripts"]?: typeof import("@nuxt/scripts").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
122
+ /**
123
+ * Configuration for `nuxt-security`
124
+ */
125
+ ["security"]?: typeof import("nuxt-security").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
126
+ /**
127
+ * Configuration for `@vueuse/nuxt`
128
+ */
129
+ ["vueuse"]?: typeof import("@vueuse/nuxt").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
130
+ /**
131
+ * Configuration for `nuxt-neon`
132
+ */
133
+ ["neon"]?: typeof import("nuxt-neon").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
134
+ /**
135
+ * Configuration for `@nuxtjs/i18n`
136
+ */
137
+ ["i18n"]?: typeof import("@nuxtjs/i18n").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
138
+ /**
139
+ * Configuration for `@vueform/nuxt`
140
+ */
141
+ ["vueform"]?: typeof import("@vueform/nuxt").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
142
+ /**
143
+ * Configuration for `C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt-site-config@3.1.9_magi_fc9ec4489b75c78db1aed1033cea2b3a/node_modules/nuxt-site-config/dist/module`
144
+ */
145
+ ["site"]?: typeof import("C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt-site-config@3.1.9_magi_fc9ec4489b75c78db1aed1033cea2b3a/node_modules/nuxt-site-config/dist/module").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
146
+ /**
147
+ * Configuration for `@nuxtjs/robots`
148
+ */
149
+ ["robots"]?: typeof import("@nuxtjs/robots").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
150
+ /**
151
+ * Configuration for `@nuxtjs/sitemap`
152
+ */
153
+ ["sitemap"]?: typeof import("@nuxtjs/sitemap").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
154
+ /**
155
+ * Configuration for `nuxt-og-image`
156
+ */
157
+ ["ogImage"]?: typeof import("nuxt-og-image").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
158
+ /**
159
+ * Configuration for `nuxt-schema-org`
160
+ */
161
+ ["schemaOrg"]?: typeof import("nuxt-schema-org").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
162
+ /**
163
+ * Configuration for `nuxt-link-checker`
164
+ */
165
+ ["linkChecker"]?: typeof import("nuxt-link-checker").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
166
+ /**
167
+ * Configuration for `nuxt-seo-utils`
168
+ */
169
+ ["seo"]?: typeof import("nuxt-seo-utils").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
170
+ /**
171
+ * Configuration for `@nuxtjs/seo`
172
+ */
173
+ ["nuxtseo"]?: typeof import("@nuxtjs/seo").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
174
+ /**
175
+ * Configuration for `@nuxtjs/mdc`
176
+ */
177
+ ["mdc"]?: typeof import("@nuxtjs/mdc").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
178
+ /**
179
+ * Configuration for `@nuxt/content`
180
+ */
181
+ ["content"]?: typeof import("@nuxt/content").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
182
+ /**
183
+ * Configuration for `nuxt-auth-utils`
184
+ */
185
+ ["auth"]?: typeof import("nuxt-auth-utils").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
186
+ /**
187
+ * Configuration for `@nuxt/test-utils/module`
188
+ */
189
+ ["testUtils"]?: typeof import("@nuxt/test-utils/module").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
190
+ /**
191
+ * Configuration for `@nuxt/devtools`
192
+ */
193
+ ["devtools"]?: typeof import("@nuxt/devtools").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
194
+ /**
195
+ * Configuration for `@nuxt/telemetry`
196
+ */
197
+ ["telemetry"]?: typeof import("@nuxt/telemetry").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
198
+ 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-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_fc9ec4489b75c78db1aed1033cea2b3a/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>])[],
199
+ }
200
+ }
201
+ declare module 'nuxt/schema' {
202
+ interface NuxtOptions {
203
+ /**
204
+ * Configuration for `@nuxt/eslint`
205
+ * @see https://www.npmjs.com/package/@nuxt/eslint
206
+ */
207
+ ["eslint"]: typeof import("@nuxt/eslint").default extends NuxtModule<infer O> ? O : Record<string, any>
208
+ /**
209
+ * Configuration for `@nuxt/fonts`
210
+ * @see https://www.npmjs.com/package/@nuxt/fonts
211
+ */
212
+ ["fonts"]: typeof import("@nuxt/fonts").default extends NuxtModule<infer O> ? O : Record<string, any>
213
+ /**
214
+ * Configuration for `@nuxt/image`
215
+ * @see https://www.npmjs.com/package/@nuxt/image
216
+ */
217
+ ["image"]: typeof import("@nuxt/image").default extends NuxtModule<infer O> ? O : Record<string, any>
218
+ /**
219
+ * Configuration for `@pinia/nuxt`
220
+ * @see https://www.npmjs.com/package/@pinia/nuxt
221
+ */
222
+ ["pinia"]: typeof import("@pinia/nuxt").default extends NuxtModule<infer O> ? O : Record<string, any>
223
+ /**
224
+ * Configuration for `@nuxt/scripts`
225
+ * @see https://www.npmjs.com/package/@nuxt/scripts
226
+ */
227
+ ["scripts"]: typeof import("@nuxt/scripts").default extends NuxtModule<infer O> ? O : Record<string, any>
228
+ /**
229
+ * Configuration for `nuxt-security`
230
+ * @see https://www.npmjs.com/package/nuxt-security
231
+ */
232
+ ["security"]: typeof import("nuxt-security").default extends NuxtModule<infer O> ? O : Record<string, any>
233
+ /**
234
+ * Configuration for `@vueuse/nuxt`
235
+ * @see https://www.npmjs.com/package/@vueuse/nuxt
236
+ */
237
+ ["vueuse"]: typeof import("@vueuse/nuxt").default extends NuxtModule<infer O> ? O : Record<string, any>
238
+ /**
239
+ * Configuration for `nuxt-neon`
240
+ * @see https://www.npmjs.com/package/nuxt-neon
241
+ */
242
+ ["neon"]: typeof import("nuxt-neon").default extends NuxtModule<infer O> ? O : Record<string, any>
243
+ /**
244
+ * Configuration for `@nuxtjs/i18n`
245
+ * @see https://www.npmjs.com/package/@nuxtjs/i18n
246
+ */
247
+ ["i18n"]: typeof import("@nuxtjs/i18n").default extends NuxtModule<infer O> ? O : Record<string, any>
248
+ /**
249
+ * Configuration for `@vueform/nuxt`
250
+ * @see https://www.npmjs.com/package/@vueform/nuxt
251
+ */
252
+ ["vueform"]: typeof import("@vueform/nuxt").default extends NuxtModule<infer O> ? O : Record<string, any>
253
+ /**
254
+ * Configuration for `C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt-site-config@3.1.9_magi_fc9ec4489b75c78db1aed1033cea2b3a/node_modules/nuxt-site-config/dist/module`
255
+ * @see https://www.npmjs.com/package/C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt-site-config@3.1.9_magi_fc9ec4489b75c78db1aed1033cea2b3a/node_modules/nuxt-site-config/dist/module
256
+ */
257
+ ["site"]: typeof import("C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt-site-config@3.1.9_magi_fc9ec4489b75c78db1aed1033cea2b3a/node_modules/nuxt-site-config/dist/module").default extends NuxtModule<infer O> ? O : Record<string, any>
258
+ /**
259
+ * Configuration for `@nuxtjs/robots`
260
+ * @see https://www.npmjs.com/package/@nuxtjs/robots
261
+ */
262
+ ["robots"]: typeof import("@nuxtjs/robots").default extends NuxtModule<infer O> ? O : Record<string, any>
263
+ /**
264
+ * Configuration for `@nuxtjs/sitemap`
265
+ * @see https://www.npmjs.com/package/@nuxtjs/sitemap
266
+ */
267
+ ["sitemap"]: typeof import("@nuxtjs/sitemap").default extends NuxtModule<infer O> ? O : Record<string, any>
268
+ /**
269
+ * Configuration for `nuxt-og-image`
270
+ * @see https://www.npmjs.com/package/nuxt-og-image
271
+ */
272
+ ["ogImage"]: typeof import("nuxt-og-image").default extends NuxtModule<infer O> ? O : Record<string, any>
273
+ /**
274
+ * Configuration for `nuxt-schema-org`
275
+ * @see https://www.npmjs.com/package/nuxt-schema-org
276
+ */
277
+ ["schemaOrg"]: typeof import("nuxt-schema-org").default extends NuxtModule<infer O> ? O : Record<string, any>
278
+ /**
279
+ * Configuration for `nuxt-link-checker`
280
+ * @see https://www.npmjs.com/package/nuxt-link-checker
281
+ */
282
+ ["linkChecker"]: typeof import("nuxt-link-checker").default extends NuxtModule<infer O> ? O : Record<string, any>
283
+ /**
284
+ * Configuration for `nuxt-seo-utils`
285
+ * @see https://www.npmjs.com/package/nuxt-seo-utils
286
+ */
287
+ ["seo"]: typeof import("nuxt-seo-utils").default extends NuxtModule<infer O> ? O : Record<string, any>
288
+ /**
289
+ * Configuration for `@nuxtjs/seo`
290
+ * @see https://www.npmjs.com/package/@nuxtjs/seo
291
+ */
292
+ ["nuxtseo"]: typeof import("@nuxtjs/seo").default extends NuxtModule<infer O> ? O : Record<string, any>
293
+ /**
294
+ * Configuration for `@nuxtjs/mdc`
295
+ * @see https://www.npmjs.com/package/@nuxtjs/mdc
296
+ */
297
+ ["mdc"]: typeof import("@nuxtjs/mdc").default extends NuxtModule<infer O> ? O : Record<string, any>
298
+ /**
299
+ * Configuration for `@nuxt/content`
300
+ * @see https://content.nuxt.com
301
+ */
302
+ ["content"]: typeof import("@nuxt/content").default extends NuxtModule<infer O> ? O : Record<string, any>
303
+ /**
304
+ * Configuration for `nuxt-auth-utils`
305
+ * @see https://www.npmjs.com/package/nuxt-auth-utils
306
+ */
307
+ ["auth"]: typeof import("nuxt-auth-utils").default extends NuxtModule<infer O> ? O : Record<string, any>
308
+ /**
309
+ * Configuration for `@nuxt/test-utils/module`
310
+ * @see https://www.npmjs.com/package/@nuxt/test-utils/module
311
+ */
312
+ ["testUtils"]: typeof import("@nuxt/test-utils/module").default extends NuxtModule<infer O> ? O : Record<string, any>
313
+ /**
314
+ * Configuration for `@nuxt/devtools`
315
+ * @see https://www.npmjs.com/package/@nuxt/devtools
316
+ */
317
+ ["devtools"]: typeof import("@nuxt/devtools").default extends NuxtModule<infer O> ? O : Record<string, any>
318
+ /**
319
+ * Configuration for `@nuxt/telemetry`
320
+ * @see https://www.npmjs.com/package/@nuxt/telemetry
321
+ */
322
+ ["telemetry"]: typeof import("@nuxt/telemetry").default extends NuxtModule<infer O> ? O : Record<string, any>
323
+ }
324
+ interface NuxtConfig {
325
+ /**
326
+ * Configuration for `@nuxt/eslint`
327
+ * @see https://www.npmjs.com/package/@nuxt/eslint
328
+ */
329
+ ["eslint"]?: typeof import("@nuxt/eslint").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
330
+ /**
331
+ * Configuration for `@nuxt/fonts`
332
+ * @see https://www.npmjs.com/package/@nuxt/fonts
333
+ */
334
+ ["fonts"]?: typeof import("@nuxt/fonts").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
335
+ /**
336
+ * Configuration for `@nuxt/image`
337
+ * @see https://www.npmjs.com/package/@nuxt/image
338
+ */
339
+ ["image"]?: typeof import("@nuxt/image").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
340
+ /**
341
+ * Configuration for `@pinia/nuxt`
342
+ * @see https://www.npmjs.com/package/@pinia/nuxt
343
+ */
344
+ ["pinia"]?: typeof import("@pinia/nuxt").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
345
+ /**
346
+ * Configuration for `@nuxt/scripts`
347
+ * @see https://www.npmjs.com/package/@nuxt/scripts
348
+ */
349
+ ["scripts"]?: typeof import("@nuxt/scripts").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
350
+ /**
351
+ * Configuration for `nuxt-security`
352
+ * @see https://www.npmjs.com/package/nuxt-security
353
+ */
354
+ ["security"]?: typeof import("nuxt-security").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
355
+ /**
356
+ * Configuration for `@vueuse/nuxt`
357
+ * @see https://www.npmjs.com/package/@vueuse/nuxt
358
+ */
359
+ ["vueuse"]?: typeof import("@vueuse/nuxt").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
360
+ /**
361
+ * Configuration for `nuxt-neon`
362
+ * @see https://www.npmjs.com/package/nuxt-neon
363
+ */
364
+ ["neon"]?: typeof import("nuxt-neon").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
365
+ /**
366
+ * Configuration for `@nuxtjs/i18n`
367
+ * @see https://www.npmjs.com/package/@nuxtjs/i18n
368
+ */
369
+ ["i18n"]?: typeof import("@nuxtjs/i18n").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
370
+ /**
371
+ * Configuration for `@vueform/nuxt`
372
+ * @see https://www.npmjs.com/package/@vueform/nuxt
373
+ */
374
+ ["vueform"]?: typeof import("@vueform/nuxt").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
375
+ /**
376
+ * Configuration for `C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt-site-config@3.1.9_magi_fc9ec4489b75c78db1aed1033cea2b3a/node_modules/nuxt-site-config/dist/module`
377
+ * @see https://www.npmjs.com/package/C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt-site-config@3.1.9_magi_fc9ec4489b75c78db1aed1033cea2b3a/node_modules/nuxt-site-config/dist/module
378
+ */
379
+ ["site"]?: typeof import("C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt-site-config@3.1.9_magi_fc9ec4489b75c78db1aed1033cea2b3a/node_modules/nuxt-site-config/dist/module").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
380
+ /**
381
+ * Configuration for `@nuxtjs/robots`
382
+ * @see https://www.npmjs.com/package/@nuxtjs/robots
383
+ */
384
+ ["robots"]?: typeof import("@nuxtjs/robots").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
385
+ /**
386
+ * Configuration for `@nuxtjs/sitemap`
387
+ * @see https://www.npmjs.com/package/@nuxtjs/sitemap
388
+ */
389
+ ["sitemap"]?: typeof import("@nuxtjs/sitemap").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
390
+ /**
391
+ * Configuration for `nuxt-og-image`
392
+ * @see https://www.npmjs.com/package/nuxt-og-image
393
+ */
394
+ ["ogImage"]?: typeof import("nuxt-og-image").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
395
+ /**
396
+ * Configuration for `nuxt-schema-org`
397
+ * @see https://www.npmjs.com/package/nuxt-schema-org
398
+ */
399
+ ["schemaOrg"]?: typeof import("nuxt-schema-org").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
400
+ /**
401
+ * Configuration for `nuxt-link-checker`
402
+ * @see https://www.npmjs.com/package/nuxt-link-checker
403
+ */
404
+ ["linkChecker"]?: typeof import("nuxt-link-checker").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
405
+ /**
406
+ * Configuration for `nuxt-seo-utils`
407
+ * @see https://www.npmjs.com/package/nuxt-seo-utils
408
+ */
409
+ ["seo"]?: typeof import("nuxt-seo-utils").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
410
+ /**
411
+ * Configuration for `@nuxtjs/seo`
412
+ * @see https://www.npmjs.com/package/@nuxtjs/seo
413
+ */
414
+ ["nuxtseo"]?: typeof import("@nuxtjs/seo").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
415
+ /**
416
+ * Configuration for `@nuxtjs/mdc`
417
+ * @see https://www.npmjs.com/package/@nuxtjs/mdc
418
+ */
419
+ ["mdc"]?: typeof import("@nuxtjs/mdc").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
420
+ /**
421
+ * Configuration for `@nuxt/content`
422
+ * @see https://content.nuxt.com
423
+ */
424
+ ["content"]?: typeof import("@nuxt/content").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
425
+ /**
426
+ * Configuration for `nuxt-auth-utils`
427
+ * @see https://www.npmjs.com/package/nuxt-auth-utils
428
+ */
429
+ ["auth"]?: typeof import("nuxt-auth-utils").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
430
+ /**
431
+ * Configuration for `@nuxt/test-utils/module`
432
+ * @see https://www.npmjs.com/package/@nuxt/test-utils/module
433
+ */
434
+ ["testUtils"]?: typeof import("@nuxt/test-utils/module").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
435
+ /**
436
+ * Configuration for `@nuxt/devtools`
437
+ * @see https://www.npmjs.com/package/@nuxt/devtools
438
+ */
439
+ ["devtools"]?: typeof import("@nuxt/devtools").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
440
+ /**
441
+ * Configuration for `@nuxt/telemetry`
442
+ * @see https://www.npmjs.com/package/@nuxt/telemetry
443
+ */
444
+ ["telemetry"]?: typeof import("@nuxt/telemetry").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
445
+ 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-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_fc9ec4489b75c78db1aed1033cea2b3a/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>])[],
446
+ }
447
+ interface RuntimeConfig {
448
+ app: {
449
+ buildId: string,
450
+
451
+ baseURL: string,
452
+
453
+ buildAssetsDir: string,
454
+
455
+ cdnURL: string,
456
+ },
457
+
458
+ nitro: {
459
+ envPrefix: string,
460
+ },
461
+
462
+ "nuxt-scripts": {
463
+ version: string,
464
+ },
465
+
466
+ private: {
467
+ basicAuth: boolean,
468
+ },
469
+
470
+ security: {
471
+ strict: boolean,
472
+
473
+ headers: {
474
+ crossOriginResourcePolicy: string,
475
+
476
+ crossOriginOpenerPolicy: string,
477
+
478
+ crossOriginEmbedderPolicy: string,
479
+
480
+ contentSecurityPolicy: {
481
+ "base-uri": Array<string>,
482
+
483
+ "font-src": Array<string>,
484
+
485
+ "form-action": Array<string>,
486
+
487
+ "frame-ancestors": Array<string>,
488
+
489
+ "img-src": Array<string>,
490
+
491
+ "object-src": Array<string>,
492
+
493
+ "script-src-attr": Array<string>,
494
+
495
+ "style-src": Array<string>,
496
+
497
+ "script-src": Array<string>,
498
+
499
+ "upgrade-insecure-requests": boolean,
500
+ },
501
+
502
+ originAgentCluster: string,
503
+
504
+ referrerPolicy: string,
505
+
506
+ strictTransportSecurity: {
507
+ maxAge: number,
508
+
509
+ includeSubdomains: boolean,
510
+ },
511
+
512
+ xContentTypeOptions: string,
513
+
514
+ xDNSPrefetchControl: string,
515
+
516
+ xDownloadOptions: string,
517
+
518
+ xFrameOptions: string,
519
+
520
+ xPermittedCrossDomainPolicies: string,
521
+
522
+ xXSSProtection: string,
523
+
524
+ permissionsPolicy: {
525
+ camera: Array<any>,
526
+
527
+ "display-capture": Array<any>,
528
+
529
+ fullscreen: Array<any>,
530
+
531
+ geolocation: Array<any>,
532
+
533
+ microphone: Array<any>,
534
+ },
535
+ },
536
+
537
+ requestSizeLimiter: {
538
+ maxRequestSizeInBytes: number,
539
+
540
+ maxUploadFileRequestInBytes: number,
541
+
542
+ throwError: boolean,
543
+ },
544
+
545
+ rateLimiter: {
546
+ tokensPerInterval: number,
547
+
548
+ interval: number,
549
+
550
+ headers: boolean,
551
+
552
+ driver: {
553
+ name: string,
554
+ },
555
+
556
+ whiteList: any,
557
+
558
+ throwError: boolean,
559
+ },
560
+
561
+ xssValidator: {
562
+ methods: Array<string>,
563
+
564
+ throwError: boolean,
565
+ },
566
+
567
+ corsHandler: {
568
+ origin: string,
569
+
570
+ methods: Array<string>,
571
+
572
+ preflight: {
573
+ statusCode: number,
574
+ },
575
+ },
576
+
577
+ allowedMethodsRestricter: {
578
+ methods: string,
579
+
580
+ throwError: boolean,
581
+ },
582
+
583
+ hidePoweredBy: boolean,
584
+
585
+ enabled: boolean,
586
+
587
+ csrf: boolean,
588
+
589
+ nonce: boolean,
590
+
591
+ removeLoggers: boolean,
592
+
593
+ ssg: {
594
+ meta: boolean,
595
+
596
+ hashScripts: boolean,
597
+
598
+ hashStyles: boolean,
599
+
600
+ nitroHeaders: boolean,
601
+
602
+ exportToPresets: boolean,
603
+ },
604
+
605
+ sri: boolean,
606
+ },
607
+
608
+ neonHost: string,
609
+
610
+ neonUser: string,
611
+
612
+ neonPass: string,
613
+
614
+ neonDB: string,
615
+
616
+ sitemap: {
617
+ isI18nMapped: boolean,
618
+
619
+ sitemapName: string,
620
+
621
+ isMultiSitemap: boolean,
622
+
623
+ excludeAppSources: Array<any>,
624
+
625
+ cacheMaxAgeSeconds: number,
626
+
627
+ autoLastmod: boolean,
628
+
629
+ defaultSitemapsChunkSize: number,
630
+
631
+ minify: boolean,
632
+
633
+ sortEntries: boolean,
634
+
635
+ debug: boolean,
636
+
637
+ discoverImages: boolean,
638
+
639
+ discoverVideos: boolean,
640
+
641
+ sitemapsPathPrefix: string,
642
+
643
+ isNuxtContentDocumentDriven: boolean,
644
+
645
+ xsl: string,
646
+
647
+ xslTips: boolean,
648
+
649
+ xslColumns: Array<{
650
+
651
+ }>,
652
+
653
+ credits: boolean,
654
+
655
+ version: string,
656
+
657
+ sitemaps: {
658
+ "sitemap.xml": {
659
+ sitemapName: string,
660
+
661
+ route: string,
662
+
663
+ defaults: any,
664
+
665
+ include: Array<any>,
666
+
667
+ exclude: Array<string>,
668
+
669
+ includeAppSources: boolean,
670
+ },
671
+ },
672
+ },
673
+
674
+ content: {
675
+ databaseVersion: string,
676
+
677
+ version: string,
678
+
679
+ database: {
680
+ type: string,
681
+
682
+ filename: string,
683
+ },
684
+
685
+ localDatabase: {
686
+ type: string,
687
+
688
+ filename: string,
689
+ },
690
+
691
+ integrityCheck: boolean,
692
+ },
693
+
694
+ session: {
695
+ name: string,
696
+
697
+ password: string,
698
+
699
+ cookie: {
700
+ sameSite: string,
701
+ },
702
+ },
703
+
704
+ hash: {
705
+ scrypt: any,
706
+ },
707
+
708
+ webauthn: {
709
+ register: any,
710
+
711
+ authenticate: any,
712
+ },
713
+
714
+ oauth: {
715
+ gitea: {
716
+ clientId: string,
717
+
718
+ clientSecret: string,
719
+
720
+ redirectURL: string,
721
+
722
+ baseURL: string,
723
+ },
724
+
725
+ github: {
726
+ clientId: string,
727
+
728
+ clientSecret: string,
729
+
730
+ redirectURL: string,
731
+ },
732
+
733
+ gitlab: {
734
+ clientId: string,
735
+
736
+ clientSecret: string,
737
+
738
+ redirectURL: string,
739
+
740
+ baseURL: string,
741
+ },
742
+
743
+ spotify: {
744
+ clientId: string,
745
+
746
+ clientSecret: string,
747
+
748
+ redirectURL: string,
749
+ },
750
+
751
+ google: {
752
+ clientId: string,
753
+
754
+ clientSecret: string,
755
+
756
+ redirectURL: string,
757
+ },
758
+
759
+ twitch: {
760
+ clientId: string,
761
+
762
+ clientSecret: string,
763
+
764
+ redirectURL: string,
765
+ },
766
+
767
+ auth0: {
768
+ clientId: string,
769
+
770
+ clientSecret: string,
771
+
772
+ domain: string,
773
+
774
+ audience: string,
775
+
776
+ redirectURL: string,
777
+ },
778
+
779
+ workos: {
780
+ clientId: string,
781
+
782
+ clientSecret: string,
783
+
784
+ connectionId: string,
785
+
786
+ screenHint: string,
787
+
788
+ redirectURL: string,
789
+ },
790
+
791
+ microsoft: {
792
+ clientId: string,
793
+
794
+ clientSecret: string,
795
+
796
+ tenant: string,
797
+
798
+ scope: Array<any>,
799
+
800
+ authorizationURL: string,
801
+
802
+ tokenURL: string,
803
+
804
+ userURL: string,
805
+
806
+ redirectURL: string,
807
+ },
808
+
809
+ azureb2c: {
810
+ clientId: string,
811
+
812
+ policy: string,
813
+
814
+ tenant: string,
815
+
816
+ scope: Array<any>,
817
+
818
+ authorizationURL: string,
819
+
820
+ tokenURL: string,
821
+
822
+ userURL: string,
823
+
824
+ redirectURL: string,
825
+ },
826
+
827
+ discord: {
828
+ clientId: string,
829
+
830
+ clientSecret: string,
831
+
832
+ redirectURL: string,
833
+ },
834
+
835
+ battledotnet: {
836
+ clientId: string,
837
+
838
+ clientSecret: string,
839
+
840
+ redirectURL: string,
841
+ },
842
+
843
+ bluesky: {
844
+ clientMetadataFilename: string,
845
+
846
+ clientName: string,
847
+
848
+ clientUri: string,
849
+
850
+ logoUri: string,
851
+
852
+ policyUri: string,
853
+
854
+ tosUri: string,
855
+
856
+ scope: Array<string>,
857
+
858
+ grantTypes: Array<string>,
859
+
860
+ responseTypes: Array<string>,
861
+
862
+ applicationType: string,
863
+
864
+ redirectUris: Array<any>,
865
+
866
+ dpopBoundAccessTokens: boolean,
867
+
868
+ tokenEndpointAuthMethod: string,
869
+ },
870
+
871
+ keycloak: {
872
+ clientId: string,
873
+
874
+ clientSecret: string,
875
+
876
+ serverUrl: string,
877
+
878
+ serverUrlInternal: string,
879
+
880
+ realm: string,
881
+
882
+ redirectURL: string,
883
+ },
884
+
885
+ linear: {
886
+ clientId: string,
887
+
888
+ clientSecret: string,
889
+
890
+ redirectURL: string,
891
+ },
892
+
893
+ linkedin: {
894
+ clientId: string,
895
+
896
+ clientSecret: string,
897
+
898
+ redirectURL: string,
899
+ },
900
+
901
+ cognito: {
902
+ clientId: string,
903
+
904
+ clientSecret: string,
905
+
906
+ region: string,
907
+
908
+ userPoolId: string,
909
+
910
+ redirectURL: string,
911
+ },
912
+
913
+ facebook: {
914
+ clientId: string,
915
+
916
+ clientSecret: string,
917
+
918
+ redirectURL: string,
919
+ },
920
+
921
+ instagram: {
922
+ clientId: string,
923
+
924
+ clientSecret: string,
925
+
926
+ redirectURL: string,
927
+ },
928
+
929
+ paypal: {
930
+ clientId: string,
931
+
932
+ clientSecret: string,
933
+
934
+ redirectURL: string,
935
+ },
936
+
937
+ steam: {
938
+ apiKey: string,
939
+
940
+ redirectURL: string,
941
+ },
942
+
943
+ x: {
944
+ clientId: string,
945
+
946
+ clientSecret: string,
947
+
948
+ redirectURL: string,
949
+ },
950
+
951
+ xsuaa: {
952
+ clientId: string,
953
+
954
+ clientSecret: string,
955
+
956
+ domain: string,
957
+
958
+ redirectURL: string,
959
+ },
960
+
961
+ vk: {
962
+ clientId: string,
963
+
964
+ clientSecret: string,
965
+
966
+ redirectURL: string,
967
+ },
968
+
969
+ yandex: {
970
+ clientId: string,
971
+
972
+ clientSecret: string,
973
+
974
+ redirectURL: string,
975
+ },
976
+
977
+ tiktok: {
978
+ clientKey: string,
979
+
980
+ clientSecret: string,
981
+
982
+ redirectURL: string,
983
+ },
984
+
985
+ dropbox: {
986
+ clientId: string,
987
+
988
+ clientSecret: string,
989
+
990
+ redirectURL: string,
991
+ },
992
+
993
+ polar: {
994
+ clientId: string,
995
+
996
+ clientSecret: string,
997
+
998
+ redirectURL: string,
999
+ },
1000
+
1001
+ zitadel: {
1002
+ clientId: string,
1003
+
1004
+ clientSecret: string,
1005
+
1006
+ domain: string,
1007
+
1008
+ redirectURL: string,
1009
+ },
1010
+
1011
+ authentik: {
1012
+ clientId: string,
1013
+
1014
+ clientSecret: string,
1015
+
1016
+ domain: string,
1017
+
1018
+ redirectURL: string,
1019
+ },
1020
+
1021
+ seznam: {
1022
+ clientId: string,
1023
+
1024
+ clientSecret: string,
1025
+
1026
+ redirectURL: string,
1027
+ },
1028
+
1029
+ strava: {
1030
+ clientId: string,
1031
+
1032
+ clientSecret: string,
1033
+
1034
+ redirectURL: string,
1035
+ },
1036
+
1037
+ hubspot: {
1038
+ clientId: string,
1039
+
1040
+ clientSecret: string,
1041
+
1042
+ redirectURL: string,
1043
+ },
1044
+
1045
+ line: {
1046
+ clientId: string,
1047
+
1048
+ clientSecret: string,
1049
+
1050
+ redirectURL: string,
1051
+ },
1052
+
1053
+ atlassian: {
1054
+ clientId: string,
1055
+
1056
+ clientSecret: string,
1057
+
1058
+ redirectURL: string,
1059
+ },
1060
+
1061
+ apple: {
1062
+ teamId: string,
1063
+
1064
+ keyId: string,
1065
+
1066
+ privateKey: string,
1067
+
1068
+ redirectURL: string,
1069
+
1070
+ clientId: string,
1071
+ },
1072
+
1073
+ kick: {
1074
+ clientId: string,
1075
+
1076
+ clientSecret: string,
1077
+
1078
+ redirectURL: string,
1079
+ },
1080
+
1081
+ livechat: {
1082
+ clientId: string,
1083
+
1084
+ clientSecret: string,
1085
+ },
1086
+
1087
+ salesforce: {
1088
+ clientId: string,
1089
+
1090
+ clientSecret: string,
1091
+
1092
+ redirectURL: string,
1093
+
1094
+ baseURL: string,
1095
+
1096
+ scope: string,
1097
+ },
1098
+
1099
+ slack: {
1100
+ clientId: string,
1101
+
1102
+ clientSecret: string,
1103
+
1104
+ redirectURL: string,
1105
+
1106
+ scope: string,
1107
+ },
1108
+
1109
+ heroku: {
1110
+ clientId: string,
1111
+
1112
+ clientSecret: string,
1113
+
1114
+ redirectURL: string,
1115
+
1116
+ scope: string,
1117
+ },
1118
+ },
1119
+
1120
+ "nuxt-site-config": {
1121
+ stack: Array<{
1122
+
1123
+ }>,
1124
+
1125
+ version: string,
1126
+
1127
+ debug: boolean,
1128
+
1129
+ multiTenancy: Array<any>,
1130
+ },
1131
+
1132
+ "nuxt-robots": {
1133
+ version: string,
1134
+
1135
+ isNuxtContentV2: boolean,
1136
+
1137
+ debug: boolean,
1138
+
1139
+ credits: boolean,
1140
+
1141
+ groups: Array<{
1142
+
1143
+ }>,
1144
+
1145
+ sitemap: Array<string>,
1146
+
1147
+ header: boolean,
1148
+
1149
+ robotsEnabledValue: string,
1150
+
1151
+ robotsDisabledValue: string,
1152
+
1153
+ cacheControl: string,
1154
+ },
1155
+ }
1156
+ interface PublicRuntimeConfig {
1157
+ ignis: {
1158
+ log: {
1159
+ level: string,
1160
+ },
1161
+
1162
+ ssr: boolean,
1163
+
1164
+ pages: boolean,
1165
+
1166
+ preset: {
1167
+ ui: string,
1168
+
1169
+ db: string,
1170
+
1171
+ forms: string,
1172
+ },
1173
+
1174
+ core: {
1175
+ eslint: boolean,
1176
+
1177
+ fonts: boolean,
1178
+
1179
+ image: boolean,
1180
+
1181
+ pinia: boolean,
1182
+
1183
+ time: boolean,
1184
+
1185
+ scripts: boolean,
1186
+
1187
+ security: boolean,
1188
+
1189
+ vueuse: boolean,
1190
+ },
1191
+
1192
+ ui: boolean,
1193
+
1194
+ tailwind: boolean,
1195
+
1196
+ neon: boolean,
1197
+
1198
+ supabase: boolean,
1199
+
1200
+ i18n: {
1201
+ enabled: boolean,
1202
+
1203
+ default: string,
1204
+
1205
+ config: string,
1206
+ },
1207
+
1208
+ formkit: {
1209
+ enabled: boolean,
1210
+
1211
+ default: string,
1212
+
1213
+ config: string,
1214
+ },
1215
+
1216
+ vueform: boolean,
1217
+
1218
+ content: boolean,
1219
+
1220
+ openprops: boolean,
1221
+
1222
+ pslo: {
1223
+ enabled: boolean,
1224
+
1225
+ content: boolean,
1226
+ },
1227
+
1228
+ seo: boolean,
1229
+
1230
+ auth: boolean,
1231
+
1232
+ warn: {
1233
+ duplicates: boolean,
1234
+ },
1235
+ },
1236
+
1237
+ "nuxt-scripts": {
1238
+ version: string,
1239
+
1240
+ defaultScriptOptions: {
1241
+ trigger: string,
1242
+ },
1243
+ },
1244
+
1245
+ neonDB: string,
1246
+
1247
+ neonSSLMode: string,
1248
+
1249
+ neonRawWarning: boolean,
1250
+
1251
+ "nuxt-link-checker": {
1252
+ version: string,
1253
+
1254
+ hasSitemapModule: boolean,
1255
+
1256
+ rootDir: string,
1257
+
1258
+ excludeLinks: Array<any>,
1259
+
1260
+ skipInspections: Array<any>,
1261
+
1262
+ fetchTimeout: number,
1263
+
1264
+ showLiveInspections: boolean,
1265
+
1266
+ fetchRemoteUrls: boolean,
1267
+ },
1268
+
1269
+ "seo-utils": {
1270
+ canonicalQueryWhitelist: Array<string>,
1271
+
1272
+ canonicalLowercase: boolean,
1273
+ },
1274
+
1275
+ content: {
1276
+ wsUrl: string,
1277
+ },
1278
+
1279
+ mdc: {
1280
+ components: {
1281
+ prose: boolean,
1282
+
1283
+ map: any,
1284
+ },
1285
+
1286
+ headings: {
1287
+ anchorLinks: {
1288
+ h1: boolean,
1289
+
1290
+ h2: boolean,
1291
+
1292
+ h3: boolean,
1293
+
1294
+ h4: boolean,
1295
+
1296
+ h5: boolean,
1297
+
1298
+ h6: boolean,
1299
+ },
1300
+ },
1301
+ },
1302
+
1303
+ i18n: {
1304
+ baseUrl: string,
1305
+
1306
+ defaultLocale: string,
1307
+
1308
+ defaultDirection: string,
1309
+
1310
+ strategy: string,
1311
+
1312
+ lazy: boolean,
1313
+
1314
+ rootRedirect: any,
1315
+
1316
+ routesNameSeparator: string,
1317
+
1318
+ defaultLocaleRouteNameSuffix: string,
1319
+
1320
+ skipSettingLocaleOnNavigate: boolean,
1321
+
1322
+ differentDomains: boolean,
1323
+
1324
+ trailingSlash: boolean,
1325
+
1326
+ locales: Array<string>,
1327
+
1328
+ detectBrowserLanguage: {
1329
+ alwaysRedirect: boolean,
1330
+
1331
+ cookieCrossOrigin: boolean,
1332
+
1333
+ cookieDomain: any,
1334
+
1335
+ cookieKey: string,
1336
+
1337
+ cookieSecure: boolean,
1338
+
1339
+ fallbackLocale: string,
1340
+
1341
+ redirectOn: string,
1342
+
1343
+ useCookie: boolean,
1344
+ },
1345
+
1346
+ experimental: {
1347
+ localeDetector: string,
1348
+
1349
+ switchLocalePathLinkSSR: boolean,
1350
+
1351
+ autoImportTranslationFunctions: boolean,
1352
+
1353
+ typedPages: boolean,
1354
+
1355
+ typedOptionsAndMessages: boolean,
1356
+
1357
+ generatedLocaleFilePathFormat: string,
1358
+
1359
+ alternateLinkCanonicalQueries: boolean,
1360
+
1361
+ hmr: boolean,
1362
+ },
1363
+
1364
+ multiDomainLocales: boolean,
1365
+ },
1366
+ }
1367
+ }
1368
+ declare module 'vue' {
1369
+ interface ComponentCustomProperties {
1370
+ $config: RuntimeConfig
1371
+ }
1372
+ }