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.
- package/.data/content/contents.sqlite +0 -0
- package/.env +43 -0
- package/.nuxt/app.config.mjs +18 -0
- package/.nuxt/component-chunk.mjs +1 -0
- package/.nuxt/components.d.ts +322 -0
- package/.nuxt/content/components.ts +51 -0
- package/.nuxt/content/database.compressed.mjs +1 -0
- package/.nuxt/content/manifest.ts +33 -0
- package/.nuxt/content/sql_dump +6 -0
- package/.nuxt/content/types.d.ts +13 -0
- package/.nuxt/dist/server/client.manifest.json +18 -0
- package/.nuxt/dist/server/client.manifest.mjs +18 -0
- package/.nuxt/dist/server/server.mjs +1 -0
- package/.nuxt/eslint-typegen.d.ts +9401 -0
- package/.nuxt/eslint.config.d.mts +9 -0
- package/.nuxt/eslint.config.mjs +53 -0
- package/.nuxt/i18n.options.mjs +165 -0
- package/.nuxt/imports.d.ts +82 -0
- package/.nuxt/manifest/latest.json +1 -0
- package/.nuxt/manifest/meta/dev.json +1 -0
- package/.nuxt/mdc-configs.mjs +8 -0
- package/.nuxt/mdc-highlighter.mjs +213 -0
- package/.nuxt/mdc-image-component.mjs +1 -0
- package/.nuxt/mdc-imports.mjs +12 -0
- package/.nuxt/module/@nuxtjs-sitemap.d.ts +28 -0
- package/.nuxt/module/nuxt-robots.d.ts +35 -0
- package/.nuxt/module/nuxt-seo-utils.assets.d.ts +25 -0
- package/.nuxt/module/nuxt-seo-utils.d.ts +22 -0
- package/.nuxt/module/nuxt-site-config.d.ts +43 -0
- package/.nuxt/modules/@nuxt-scripts.d.ts +13 -0
- package/.nuxt/nitro.json +17 -0
- package/.nuxt/nuxt-fonts-global.css +0 -0
- package/.nuxt/nuxt-i18n-logger.mjs +1 -0
- package/.nuxt/nuxt-icon-client-bundle.mjs +1 -0
- package/.nuxt/nuxt-icon-server-bundle.mjs +15 -0
- package/.nuxt/nuxt.d.ts +49 -0
- package/.nuxt/nuxt.json +9 -0
- package/.nuxt/schema/nuxt.schema.d.ts +17 -0
- package/.nuxt/schema/nuxt.schema.json +3 -0
- package/.nuxt/tailwind/postcss.mjs +15 -0
- package/.nuxt/tsconfig.json +374 -0
- package/.nuxt/tsconfig.server.json +292 -0
- package/.nuxt/types/app-defaults.d.ts +7 -0
- package/.nuxt/types/app.config.d.ts +31 -0
- package/.nuxt/types/build.d.ts +27 -0
- package/.nuxt/types/builder-env.d.ts +1 -0
- package/.nuxt/types/i18n-plugin.d.ts +104 -0
- package/.nuxt/types/imports.d.ts +899 -0
- package/.nuxt/types/layouts.d.ts +7 -0
- package/.nuxt/types/middleware.d.ts +7 -0
- package/.nuxt/types/neon.d.ts +35 -0
- package/.nuxt/types/nitro-config.d.ts +14 -0
- package/.nuxt/types/nitro-imports.d.ts +405 -0
- package/.nuxt/types/nitro-middleware.d.ts +6 -0
- package/.nuxt/types/nitro-nuxt.d.ts +34 -0
- package/.nuxt/types/nitro-routes.d.ts +81 -0
- package/.nuxt/types/nitro.d.ts +3 -0
- package/.nuxt/types/plugins.d.ts +57 -0
- package/.nuxt/types/schema.d.ts +1372 -0
- package/.nuxt/types/ui.d.ts +35 -0
- package/.nuxt/types/vue-shim.d.ts +0 -0
- package/.nuxt/ui/accordion.ts +20 -0
- package/.nuxt/ui/alert.ts +264 -0
- package/.nuxt/ui/avatar-group.ts +52 -0
- package/.nuxt/ui/avatar.ts +54 -0
- package/.nuxt/ui/badge.ts +263 -0
- package/.nuxt/ui/breadcrumb.ts +45 -0
- package/.nuxt/ui/button-group.ts +16 -0
- package/.nuxt/ui/button.ts +378 -0
- package/.nuxt/ui/calendar.ts +103 -0
- package/.nuxt/ui/card.ts +34 -0
- package/.nuxt/ui/carousel.ts +38 -0
- package/.nuxt/ui/checkbox-group.ts +204 -0
- package/.nuxt/ui/checkbox.ts +236 -0
- package/.nuxt/ui/chip.ts +96 -0
- package/.nuxt/ui/collapsible.ts +6 -0
- package/.nuxt/ui/color-picker.ts +47 -0
- package/.nuxt/ui/command-palette.ts +50 -0
- package/.nuxt/ui/container.ts +3 -0
- package/.nuxt/ui/context-menu.ts +216 -0
- package/.nuxt/ui/drawer.ts +126 -0
- package/.nuxt/ui/dropdown-menu.ts +217 -0
- package/.nuxt/ui/form-field.ts +48 -0
- package/.nuxt/ui/form.ts +3 -0
- package/.nuxt/ui/index.ts +50 -0
- package/.nuxt/ui/input-menu.ts +436 -0
- package/.nuxt/ui/input-number.ts +245 -0
- package/.nuxt/ui/input.ts +289 -0
- package/.nuxt/ui/kbd.ts +31 -0
- package/.nuxt/ui/link.ts +22 -0
- package/.nuxt/ui/modal.ts +29 -0
- package/.nuxt/ui/navigation-menu.ts +501 -0
- package/.nuxt/ui/pagination.ts +13 -0
- package/.nuxt/ui/pin-input.ts +171 -0
- package/.nuxt/ui/popover.ts +6 -0
- package/.nuxt/ui/progress.ts +297 -0
- package/.nuxt/ui/radio-group.ts +350 -0
- package/.nuxt/ui/select-menu.ts +346 -0
- package/.nuxt/ui/select.ts +341 -0
- package/.nuxt/ui/separator.ts +172 -0
- package/.nuxt/ui/skeleton.ts +3 -0
- package/.nuxt/ui/slideover.ts +71 -0
- package/.nuxt/ui/slider.ts +171 -0
- package/.nuxt/ui/stepper.ts +202 -0
- package/.nuxt/ui/switch.ts +131 -0
- package/.nuxt/ui/table.ts +147 -0
- package/.nuxt/ui/tabs.ts +256 -0
- package/.nuxt/ui/textarea.ts +294 -0
- package/.nuxt/ui/toast.ts +81 -0
- package/.nuxt/ui/toaster.ts +91 -0
- package/.nuxt/ui/tooltip.ts +9 -0
- package/.nuxt/ui/tree.ts +154 -0
- package/.nuxt/ui-image-component.ts +1 -0
- package/.nuxt/ui.css +143 -0
- package/app.vue +16 -36
- package/assets/css/nuxt-ui.css +16 -0
- package/assets/css/tailwind.css +10 -44
- package/components/AppFeature.vue +47 -3
- package/components/AppFeatureList.vue +86 -26
- package/components/CurrentTime.vue +9 -9
- package/components/ignis/IgnisFooter.vue +16 -0
- package/components/ignis/IgnisHeader.vue +48 -0
- package/components/ignis/IgnisInfo.vue +26 -0
- package/composables/useTranslation.ts +11 -4
- package/content/second.md +4 -0
- package/features.ts +129 -23
- package/i18n/i18n.config.ts +2 -2
- package/{assets/lang → i18n/locales}/en.json +6 -1
- package/i18n/locales/es.json +4 -0
- package/nuxt.config.ts +26 -2
- package/package.json +71 -79
- package/pages/ignis.vue +3 -0
- package/pages/index.vue +1 -12
- package/tailwind.config.ts +2 -1
- package/utils/i18n-sources.ts +20 -2
- package/vueform.config.ts +20 -0
- package/.gitattributes +0 -2
- package/CHANGELOG.md +0 -72
- package/LICENSE +0 -21
- package/README.md +0 -147
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
// Generated by nuxt-robots
|
|
2
|
+
|
|
3
|
+
declare module 'nitropack' {
|
|
4
|
+
interface NitroApp {
|
|
5
|
+
_robots: {
|
|
6
|
+
ctx: import('../../node_modules/.pnpm/@nuxtjs+robots@5.2.10_magic_09575d7e403dce16d6423e011b5a6500/node_modules/@nuxtjs/robots/dist/runtime/types').HookRobotsConfigContext
|
|
7
|
+
nuxtContentUrls?: Set<string>
|
|
8
|
+
},
|
|
9
|
+
_robotsRuleMactcher: (url: string) => string
|
|
10
|
+
}
|
|
11
|
+
interface NitroRouteRules {
|
|
12
|
+
robots?: boolean | string | {
|
|
13
|
+
indexable: boolean
|
|
14
|
+
rule: string
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
interface NitroRouteConfig {
|
|
18
|
+
robots?: boolean | string | {
|
|
19
|
+
indexable: boolean
|
|
20
|
+
rule: string
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
interface NitroRuntimeHooks {
|
|
24
|
+
'robots:config': (ctx: import('../../node_modules/.pnpm/@nuxtjs+robots@5.2.10_magic_09575d7e403dce16d6423e011b5a6500/node_modules/@nuxtjs/robots/dist/runtime/types').HookRobotsConfigContext) => void | Promise<void>
|
|
25
|
+
'robots:robots-txt': (ctx: import('../../node_modules/.pnpm/@nuxtjs+robots@5.2.10_magic_09575d7e403dce16d6423e011b5a6500/node_modules/@nuxtjs/robots/dist/runtime/types').HookRobotsTxtContext) => void | Promise<void>
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
declare module 'h3' {
|
|
29
|
+
import type { RobotsContext } from '#robots/types'
|
|
30
|
+
interface H3EventContext {
|
|
31
|
+
robots: RobotsContext
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
export {}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
// Generated by nuxt-seo-utils.assets
|
|
2
|
+
|
|
3
|
+
declare module '#app' {
|
|
4
|
+
import { HeadEntry, HeadTag } from '@unhead/vue/types'
|
|
5
|
+
|
|
6
|
+
interface RuntimeNuxtHooks {
|
|
7
|
+
'head:tags': (tag: HeadTag[]) => Promise<void> | void
|
|
8
|
+
'head:entries': (entries: HeadEntry[]) => Promise<void> | void
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
declare module '@unhead/schema' {
|
|
12
|
+
|
|
13
|
+
type PublicFiles = '/favicon.ico' | '/nuxt-ignis.png' | '/unsplash.jpg' | (string & Record<never, never>)
|
|
14
|
+
type JsFiles = (string & Record<never, never>)
|
|
15
|
+
|
|
16
|
+
interface SchemaAugmentations {
|
|
17
|
+
link: import('@unhead/schema').UserTagConfigWithoutInnerContent & {
|
|
18
|
+
href: PublicFiles
|
|
19
|
+
}
|
|
20
|
+
script: import('@unhead/schema').TagUserProperties & {
|
|
21
|
+
src: JsFiles
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
export {}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
// Generated by nuxt-seo-utils
|
|
2
|
+
|
|
3
|
+
declare module 'nitropack' {
|
|
4
|
+
interface NitroRouteRules {
|
|
5
|
+
seoMeta?: import('../../node_modules/.pnpm/nuxt-seo-utils@7.0.10_magic_e43b4f83c972427e42e84b0d774d1b19/node_modules/nuxt-seo-utils/dist/runtime/types').MetaFlatSerializable
|
|
6
|
+
head?: import('../../node_modules/.pnpm/nuxt-seo-utils@7.0.10_magic_e43b4f83c972427e42e84b0d774d1b19/node_modules/nuxt-seo-utils/dist/runtime/types').Head
|
|
7
|
+
}
|
|
8
|
+
interface NitroRouteConfig {
|
|
9
|
+
seoMeta?: import('../../node_modules/.pnpm/nuxt-seo-utils@7.0.10_magic_e43b4f83c972427e42e84b0d774d1b19/node_modules/nuxt-seo-utils/dist/runtime/types').MetaFlatSerializable
|
|
10
|
+
head?: import('../../node_modules/.pnpm/nuxt-seo-utils@7.0.10_magic_e43b4f83c972427e42e84b0d774d1b19/node_modules/nuxt-seo-utils/dist/runtime/types').Head
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
declare module '@nuxt/schema' {
|
|
15
|
+
interface AppHeadMetaObject { seoMeta?: import('../../node_modules/.pnpm/nuxt-seo-utils@7.0.10_magic_e43b4f83c972427e42e84b0d774d1b19/node_modules/nuxt-seo-utils/dist/runtime/types').MetaFlatSerializable }
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
declare module 'nuxt/schema' {
|
|
19
|
+
interface AppHeadMetaObject { seoMeta?: import('../../node_modules/.pnpm/nuxt-seo-utils@7.0.10_magic_e43b4f83c972427e42e84b0d774d1b19/node_modules/nuxt-seo-utils/dist/runtime/types').MetaFlatSerializable }
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
export {}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
// Generated by nuxt-site-config
|
|
2
|
+
|
|
3
|
+
declare module 'nitropack' {
|
|
4
|
+
interface NitroRouteRules {
|
|
5
|
+
site?: import('../../node_modules/.pnpm/nuxt-site-config@3.1.9_magi_fc9ec4489b75c78db1aed1033cea2b3a/node_modules/nuxt-site-config/dist/runtime/types').SiteConfigInput
|
|
6
|
+
}
|
|
7
|
+
interface NitroRouteConfig {
|
|
8
|
+
site?: import('../../node_modules/.pnpm/nuxt-site-config@3.1.9_magi_fc9ec4489b75c78db1aed1033cea2b3a/node_modules/nuxt-site-config/dist/runtime/types').SiteConfig
|
|
9
|
+
}
|
|
10
|
+
interface NitroRuntimeHooks {
|
|
11
|
+
'site-config:init': (ctx: import('../../node_modules/.pnpm/nuxt-site-config@3.1.9_magi_fc9ec4489b75c78db1aed1033cea2b3a/node_modules/nuxt-site-config/dist/runtime/types').HookSiteConfigInitContext) => void | Promise<void>
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
declare module 'h3' {
|
|
16
|
+
interface H3EventContext {
|
|
17
|
+
siteConfig: import('../../node_modules/.pnpm/nuxt-site-config@3.1.9_magi_fc9ec4489b75c78db1aed1033cea2b3a/node_modules/nuxt-site-config/dist/runtime/types').SiteConfigStack
|
|
18
|
+
siteConfigNitroOrigin: string
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
declare module '@nuxt/schema' {
|
|
23
|
+
interface Nuxt {
|
|
24
|
+
_siteConfig?: import('../../node_modules/.pnpm/nuxt-site-config@3.1.9_magi_fc9ec4489b75c78db1aed1033cea2b3a/node_modules/nuxt-site-config/dist/runtime/types').SiteConfigStack
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
declare module 'nuxt/app' {
|
|
28
|
+
interface NuxtApp {
|
|
29
|
+
$nuxtSiteConfig: import('../../node_modules/.pnpm/nuxt-site-config@3.1.9_magi_fc9ec4489b75c78db1aed1033cea2b3a/node_modules/nuxt-site-config/dist/runtime/types').SiteConfigStack
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
declare module '#app' {
|
|
33
|
+
interface NuxtApp {
|
|
34
|
+
$nuxtSiteConfig: import('../../node_modules/.pnpm/nuxt-site-config@3.1.9_magi_fc9ec4489b75c78db1aed1033cea2b3a/node_modules/nuxt-site-config/dist/runtime/types').SiteConfigStack
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
declare global {
|
|
38
|
+
interface Window {
|
|
39
|
+
__NUXT_SITE_CONFIG__: import('../../node_modules/.pnpm/nuxt-site-config@3.1.9_magi_fc9ec4489b75c78db1aed1033cea2b3a/node_modules/nuxt-site-config/dist/runtime/types').SiteConfigResolved
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
export {}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
// Generated by @nuxt/scripts
|
|
2
|
+
|
|
3
|
+
declare module '#app' {
|
|
4
|
+
interface NuxtApp {
|
|
5
|
+
$scripts: Record<string, (import('#nuxt-scripts/types').UseScriptContext<any>)>
|
|
6
|
+
_scripts: Record<string, (import('#nuxt-scripts/types').UseScriptContext<any>)>
|
|
7
|
+
}
|
|
8
|
+
interface RuntimeNuxtHooks {
|
|
9
|
+
'scripts:updated': (ctx: { scripts: Record<string, (import('#nuxt-scripts/types').UseScriptContext<any>)> }) => void | Promise<void>
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
export {}
|
package/.nuxt/nitro.json
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"date": "2025-05-21T19:23:32.743Z",
|
|
3
|
+
"preset": "nitro-dev",
|
|
4
|
+
"framework": {
|
|
5
|
+
"name": "nuxt",
|
|
6
|
+
"version": "3.17.4"
|
|
7
|
+
},
|
|
8
|
+
"versions": {
|
|
9
|
+
"nitro": "2.11.12"
|
|
10
|
+
},
|
|
11
|
+
"dev": {
|
|
12
|
+
"pid": 28328,
|
|
13
|
+
"workerAddress": {
|
|
14
|
+
"socketPath": "\\\\.\\pipe\\nitro-worker-28328-2-1-5894.sock"
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export function createLogger() {}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export function init() {}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { createRequire } from 'node:module'
|
|
2
|
+
const require = createRequire(import.meta.url)
|
|
3
|
+
function createRemoteCollection(fetchEndpoint) {
|
|
4
|
+
let _cache
|
|
5
|
+
return async () => {
|
|
6
|
+
if (_cache)
|
|
7
|
+
return _cache
|
|
8
|
+
const res = await fetch(fetchEndpoint).then(r => r.json())
|
|
9
|
+
_cache = res
|
|
10
|
+
return res
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
export const collections = {
|
|
15
|
+
}
|
package/.nuxt/nuxt.d.ts
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
// Generated by nuxi
|
|
2
|
+
/// <reference types="@nuxt/fonts" />
|
|
3
|
+
/// <reference types="@vueuse/nuxt" />
|
|
4
|
+
/// <reference types="@nuxt/eslint" />
|
|
5
|
+
/// <reference types="@nuxt/scripts" />
|
|
6
|
+
/// <reference types="@nuxtjs/seo" />
|
|
7
|
+
/// <reference types="@pinia/nuxt" />
|
|
8
|
+
/// <reference types="@nuxt/image" />
|
|
9
|
+
/// <reference types="@vueform/nuxt" />
|
|
10
|
+
/// <reference types="@nuxt/content" />
|
|
11
|
+
/// <reference types="nuxt-auth-utils" />
|
|
12
|
+
/// <reference types="nuxt-neon" />
|
|
13
|
+
/// <reference types="@nuxt/devtools" />
|
|
14
|
+
/// <reference types="@nuxt/eslint" />
|
|
15
|
+
/// <reference types="@nuxtjs/i18n" />
|
|
16
|
+
/// <reference types="@nuxt/telemetry" />
|
|
17
|
+
/// <reference types="nuxt-security" />
|
|
18
|
+
/// <reference types="@nuxt/test-utils" />
|
|
19
|
+
/// <reference path="types/builder-env.d.ts" />
|
|
20
|
+
/// <reference types="nuxt" />
|
|
21
|
+
/// <reference path="types/app-defaults.d.ts" />
|
|
22
|
+
/// <reference path="types/plugins.d.ts" />
|
|
23
|
+
/// <reference path="types/build.d.ts" />
|
|
24
|
+
/// <reference path="types/schema.d.ts" />
|
|
25
|
+
/// <reference path="types/app.config.d.ts" />
|
|
26
|
+
/// <reference types="@pinia/nuxt" />
|
|
27
|
+
/// <reference path="types/neon.d.ts" />
|
|
28
|
+
/// <reference types="@vueform/vueform" />
|
|
29
|
+
/// <reference path="module/nuxt-site-config.d.ts" />
|
|
30
|
+
/// <reference path="module/nuxt-robots.d.ts" />
|
|
31
|
+
/// <reference path="module/@nuxtjs-sitemap.d.ts" />
|
|
32
|
+
/// <reference path="module/nuxt-seo-utils.assets.d.ts" />
|
|
33
|
+
/// <reference path="module/nuxt-seo-utils.d.ts" />
|
|
34
|
+
/// <reference path="content/types.d.ts" />
|
|
35
|
+
/// <reference types="vitest/import-meta" />
|
|
36
|
+
/// <reference types="vue-router" />
|
|
37
|
+
/// <reference path="types/middleware.d.ts" />
|
|
38
|
+
/// <reference path="types/nitro-middleware.d.ts" />
|
|
39
|
+
/// <reference path="types/layouts.d.ts" />
|
|
40
|
+
/// <reference path="components.d.ts" />
|
|
41
|
+
/// <reference path="imports.d.ts" />
|
|
42
|
+
/// <reference path="types/imports.d.ts" />
|
|
43
|
+
/// <reference path="schema/nuxt.schema.d.ts" />
|
|
44
|
+
/// <reference path="modules/@nuxt-scripts.d.ts" />
|
|
45
|
+
/// <reference path="types/i18n-plugin.d.ts" />
|
|
46
|
+
/// <reference path="types/nitro.d.ts" />
|
|
47
|
+
/// <reference path="./eslint-typegen.d.ts" />
|
|
48
|
+
|
|
49
|
+
export {}
|
package/.nuxt/nuxt.json
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
export interface NuxtCustomSchema {
|
|
2
|
+
|
|
3
|
+
}
|
|
4
|
+
export type CustomAppConfig = Exclude<NuxtCustomSchema['appConfig'], undefined>
|
|
5
|
+
type _CustomAppConfig = CustomAppConfig
|
|
6
|
+
|
|
7
|
+
declare module '@nuxt/schema' {
|
|
8
|
+
interface NuxtConfig extends Omit<NuxtCustomSchema, 'appConfig'> {}
|
|
9
|
+
interface NuxtOptions extends Omit<NuxtCustomSchema, 'appConfig'> {}
|
|
10
|
+
interface CustomAppConfig extends _CustomAppConfig {}
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
declare module 'nuxt/schema' {
|
|
14
|
+
interface NuxtConfig extends Omit<NuxtCustomSchema, 'appConfig'> {}
|
|
15
|
+
interface NuxtOptions extends Omit<NuxtCustomSchema, 'appConfig'> {}
|
|
16
|
+
interface CustomAppConfig extends _CustomAppConfig {}
|
|
17
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
// generated by the @nuxtjs/tailwindcss <https://github.com/nuxt-modules/tailwindcss> module at 21. 5. 2025 21:21:52
|
|
2
|
+
import "@nuxtjs/tailwindcss/config-ctx"
|
|
3
|
+
import configMerger from "@nuxtjs/tailwindcss/merger";
|
|
4
|
+
|
|
5
|
+
import cfg2 from "./../../tailwind.config.ts";
|
|
6
|
+
const config = [
|
|
7
|
+
{"content":{"files":["C:/Git/nuxt-ignis/core/components/**/*.{vue,js,jsx,mjs,ts,tsx}","C:/Git/nuxt-ignis/core/components/global/**/*.{vue,js,jsx,mjs,ts,tsx}","C:/Git/nuxt-ignis/core/components/**/*.{vue,js,jsx,mjs,ts,tsx}","C:/Git/nuxt-ignis/core/layouts/**/*.{vue,js,jsx,mjs,ts,tsx}","C:/Git/nuxt-ignis/core/plugins/**/*.{js,ts,mjs}","C:/Git/nuxt-ignis/core/composables/**/*.{js,ts,mjs}","C:/Git/nuxt-ignis/core/utils/**/*.{js,ts,mjs}","C:/Git/nuxt-ignis/core/pages/**/*.{vue,js,jsx,mjs,ts,tsx}","C:/Git/nuxt-ignis/core/{A,a}pp.{vue,js,jsx,mjs,ts,tsx}","C:/Git/nuxt-ignis/core/{E,e}rror.{vue,js,jsx,mjs,ts,tsx}","C:/Git/nuxt-ignis/core/app.config.{js,ts,mjs}","C:/Git/nuxt-ignis/core/app/spa-loading-template.html"]}},
|
|
8
|
+
{},
|
|
9
|
+
cfg2,
|
|
10
|
+
{"content":{"files":["C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt-spec@0.0.4_@types+debu_fbd62cce99e0c6b5414599c74ec32b3d/node_modules/nuxt-spec/components/**/*.{vue,js,jsx,mjs,ts,tsx}","C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt-spec@0.0.4_@types+debu_fbd62cce99e0c6b5414599c74ec32b3d/node_modules/nuxt-spec/layouts/**/*.{vue,js,jsx,mjs,ts,tsx}","C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt-spec@0.0.4_@types+debu_fbd62cce99e0c6b5414599c74ec32b3d/node_modules/nuxt-spec/plugins/**/*.{js,ts,mjs}","C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt-spec@0.0.4_@types+debu_fbd62cce99e0c6b5414599c74ec32b3d/node_modules/nuxt-spec/composables/**/*.{js,ts,mjs}","C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt-spec@0.0.4_@types+debu_fbd62cce99e0c6b5414599c74ec32b3d/node_modules/nuxt-spec/utils/**/*.{js,ts,mjs}","C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt-spec@0.0.4_@types+debu_fbd62cce99e0c6b5414599c74ec32b3d/node_modules/nuxt-spec/pages/**/*.{vue,js,jsx,mjs,ts,tsx}","C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt-spec@0.0.4_@types+debu_fbd62cce99e0c6b5414599c74ec32b3d/node_modules/nuxt-spec/{A,a}pp.{vue,js,jsx,mjs,ts,tsx}","C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt-spec@0.0.4_@types+debu_fbd62cce99e0c6b5414599c74ec32b3d/node_modules/nuxt-spec/{E,e}rror.{vue,js,jsx,mjs,ts,tsx}","C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt-spec@0.0.4_@types+debu_fbd62cce99e0c6b5414599c74ec32b3d/node_modules/nuxt-spec/app.config.{js,ts,mjs}","C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt-spec@0.0.4_@types+debu_fbd62cce99e0c6b5414599c74ec32b3d/node_modules/nuxt-spec/app/spa-loading-template.html"]}}
|
|
11
|
+
].reduce((acc, curr) => configMerger(acc, curr), {});
|
|
12
|
+
|
|
13
|
+
const resolvedConfig = config;
|
|
14
|
+
|
|
15
|
+
export default resolvedConfig;
|