nuxt-ignis 0.3.3 → 0.4.0-rc.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 +8 -2
- package/.nuxt/app.config.mjs +2 -2
- package/.nuxt/cache/fonts/EP1810cmAtyahQPDHB6nvBzRkIG5RcNv4u5vTy1aYHU-Ih_Po7WkbhDymI0Y_ntmpz__bZJprHiu7_c5N_X6AAA.woff2 +0 -0
- package/.nuxt/cache/fonts/JNWOTRocaYj0gq52vW_s7sHAdSMUetrRmhhggCVxyZ0-TnR4PP30hI5UWldZ0knUBrHkvIoiDWYXwn2v1NtCh80.woff2 +0 -0
- package/.nuxt/cache/fonts/XbAtjIvy1UErjg9eu_v7X3zPLS_AwsmqVsR9fG-JB6o-H99o9_8BZXq7ey5UyS99Wn9zX0V0anvpXEqAqavcJlQ.woff2 +0 -0
- package/.nuxt/cache/fonts/ZLm6CLvwhQbamZ73M80jbqz7DuOkHlT_HRyXHG7YfVs-eYLoSJPWhqR5CE0c8XPABls8kE_7Fc7F2x7Gtfsg_8M.woff2 +0 -0
- package/.nuxt/cache/fonts/aPa9az0DeE4U5rqM-Ov0Vl_obQis_d6sScLNygGkvxw-s32Y9TxBLZRr_ebRHQ3l3q1g2j_0tPT879PPSBGrj8A.woff2 +0 -0
- package/.nuxt/cache/fonts/kgyHMsxRmhh06xcV0yKMKdTKQBsQpXGi7erqwaqgjXg-55rzD39AWoqYSkQOLHuoKZUDVcDSlXRKdaymIN2dXes.woff +0 -0
- package/.nuxt/components.d.ts +606 -394
- package/.nuxt/content/components.ts +107 -98
- package/.nuxt/content/database.compressed.mjs +1 -1
- package/.nuxt/content/manifest.ts +6 -6
- package/.nuxt/content/sql_dump.txt +5 -0
- package/.nuxt/content/types.d.ts +8 -0
- package/.nuxt/dev/index.mjs +1584 -544
- package/.nuxt/dev/index.mjs.map +1 -1
- package/.nuxt/dist/server/client.manifest.json +2 -2
- package/.nuxt/dist/server/client.manifest.mjs +2 -2
- package/.nuxt/eslint-typegen.d.ts +256 -225
- package/.nuxt/eslint.config.d.mts +3 -3
- package/.nuxt/eslint.config.mjs +11 -11
- package/.nuxt/imports.d.ts +70 -54
- package/.nuxt/manifest/latest.json +1 -1
- package/.nuxt/manifest/meta/dev.json +1 -1
- package/.nuxt/mdc-image-component.mjs +1 -1
- package/.nuxt/module/@nuxtjs-sitemap.d.ts +9 -8
- package/.nuxt/module/nuxt-robots.d.ts +37 -7
- package/.nuxt/{modules/@nuxt-scripts.d.ts → module/nuxt-scripts.d.ts} +1 -2
- package/.nuxt/module/nuxt-seo-utils.assets.d.ts +3 -3
- package/.nuxt/module/nuxt-seo-utils.d.ts +20 -6
- package/.nuxt/module/nuxt-site-config.d.ts +8 -8
- package/.nuxt/nitro.json +5 -5
- package/.nuxt/nuxt.d.ts +13 -10
- package/.nuxt/nuxt.json +2 -2
- package/.nuxt/tsconfig.json +235 -153
- package/.nuxt/tsconfig.server.json +126 -92
- package/.nuxt/types/app.config.d.ts +2 -2
- package/.nuxt/types/build.d.ts +2 -1
- package/.nuxt/types/i18n-plugin.d.ts +2 -2
- package/.nuxt/types/imports.d.ts +407 -314
- package/.nuxt/types/nitro-config.d.ts +2 -2
- package/.nuxt/types/nitro-imports.d.ts +143 -134
- package/.nuxt/types/nitro-nuxt.d.ts +2 -0
- package/.nuxt/types/nitro-routes.d.ts +17 -17
- package/.nuxt/types/plugins.d.ts +34 -34
- package/.nuxt/types/schema.d.ts +322 -12
- package/.nuxt/ui/avatar.ts +1 -1
- package/.nuxt/ui/card.ts +1 -1
- package/.nuxt/ui/carousel.ts +1 -1
- package/.nuxt/ui/command-palette.ts +1 -0
- package/.nuxt/ui/drawer.ts +1 -1
- package/.nuxt/ui/index.ts +2 -0
- package/.nuxt/ui/input-menu.ts +24 -10
- package/.nuxt/ui/input-tags.ts +310 -0
- package/.nuxt/ui/modal.ts +1 -1
- package/.nuxt/ui/navigation-menu.ts +1 -1
- package/.nuxt/ui/select-menu.ts +11 -6
- package/.nuxt/ui/select.ts +11 -6
- package/.nuxt/ui/table.ts +3 -2
- package/.nuxt/ui/timeline.ts +321 -0
- package/.nuxt/ui/toaster.ts +1 -1
- package/.nuxt/ui-image-component.ts +1 -1
- package/app.vue +2 -6
- package/assets/css/ignis-nuxt-ui.css +24 -0
- package/assets/css/{open-props.css → ignis-open-props.css} +1 -1
- package/assets/css/ignis-tailwind.css +23 -0
- package/assets/css/ignis.css +31 -0
- package/bin/make-eslint.js +55 -0
- package/components/CurrentTime.vue +1 -1
- package/components/ignis/IgnisConfig.vue +38 -0
- package/components/{AppFeature.vue → ignis/IgnisFeature.vue} +2 -1
- package/components/ignis/IgnisFeatureList.vue +125 -0
- package/components/ignis/IgnisFooter.vue +2 -2
- package/components/ignis/IgnisHeader.vue +4 -3
- package/components/ignis/IgnisInfo.vue +14 -13
- package/components/ignis/IgnisWelcome.vue +65 -0
- package/composables/useTranslation.ts +18 -9
- package/features.ts +52 -10
- package/formkit.config.ts +8 -8
- package/i18n/locales/en.json +10 -4
- package/nuxt.config.ts +30 -2
- package/package.json +29 -21
- package/pages/_ignis-config.vue +3 -0
- package/pages/_ignis-info.vue +3 -0
- package/pages/index.vue +4 -6
- package/public/_ignis-config.json +97 -0
- package/test/config/css-multiple.txt +30 -0
- package/test/config/css-nuxt-ui.txt +34 -0
- package/test/config/css-open-props.txt +2307 -0
- package/test/config/css-single.txt +28 -0
- package/test/config/css-tailwind.txt +58 -0
- package/test/config/custom-lang.txt +27 -0
- package/test/config/db-neon.txt +28 -0
- package/test/config/db-supabase.txt +31 -0
- package/test/config/default.txt +26 -15
- package/test/config/equipment-1-composable.txt +32 -21
- package/test/config/equipment-2-plugins.txt +33 -22
- package/test/config/equipment-all.txt +38 -27
- package/test/config/forms-formkit.txt +32 -0
- package/test/config/forms-vueform.txt +28 -0
- package/test/config/i18n.txt +38 -0
- package/test/config/no-default-css.txt +24 -0
- package/test/config/open-props.txt +2306 -0
- package/test/config/seo-ssr-false.txt +35 -0
- package/test/config/ui-nuxt-ui.txt +33 -0
- package/test/config/ui-tailwind.txt +57 -0
- package/test/config.test.ts +115 -0
- package/test/features/charts.txt +4 -0
- package/test/features/custom-css.txt +4 -0
- package/test/features/custom-title.txt +4 -0
- package/test/features/db-neon.txt +4 -3
- package/test/features/db-off.txt +4 -3
- package/test/features/db-supabase.txt +4 -3
- package/test/features/default.txt +4 -3
- package/test/features/disable-core.txt +2 -1
- package/test/features/enable-all.txt +5 -4
- package/test/features/equipment.txt +4 -3
- package/test/features/forms-formkit.txt +4 -3
- package/test/features/forms-off.txt +4 -3
- package/test/features/forms-vueform.txt +4 -3
- package/test/features/no-default-css.txt +4 -0
- package/test/features/regexp.txt +4 -0
- package/test/features/ui-nuxt-ui.txt +4 -3
- package/test/features/ui-off.txt +4 -3
- package/test/features/ui-tailwind.txt +5 -4
- package/test/features/validation-off.txt +4 -3
- package/test/features/validation-valibot.txt +5 -4
- package/test/features/validation-zod.txt +5 -4
- package/test/features.test.ts +37 -1
- package/utils/config/formkit.ts +23 -0
- package/utils/formkit.ts +16 -0
- package/.nuxt/content/sql_dump +0 -6
- package/app.config.ts +0 -3
- package/assets/css/nuxt-ui.css +0 -16
- package/assets/css/tailwind.css +0 -15
- package/components/AppFeatureList.vue +0 -124
- package/content/second.md +0 -11
- package/pages/ignis.vue +0 -3
- package/pages/second.vue +0 -59
- package/tailwind.config.ts +0 -29
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
{
|
|
2
|
+
"app": {
|
|
3
|
+
"head": {
|
|
4
|
+
"htmlAttrs": {
|
|
5
|
+
"lang": "en",
|
|
6
|
+
},
|
|
7
|
+
"title": "Nuxt Ignis App",
|
|
8
|
+
},
|
|
9
|
+
},
|
|
10
|
+
"css": [
|
|
11
|
+
"first.css",
|
|
12
|
+
"C:\Git\nuxt-ignis\core\assets\css\ignis.css",
|
|
13
|
+
],
|
|
14
|
+
"modules": [
|
|
15
|
+
"@nuxt/eslint",
|
|
16
|
+
"@nuxt/fonts",
|
|
17
|
+
"@nuxt/image",
|
|
18
|
+
"@nuxt/scripts",
|
|
19
|
+
"nuxt-security",
|
|
20
|
+
"@vueuse/nuxt",
|
|
21
|
+
"@pinia/nuxt",
|
|
22
|
+
],
|
|
23
|
+
"vue": {
|
|
24
|
+
"compilerOptions": {
|
|
25
|
+
"isCustomElement": [Function],
|
|
26
|
+
},
|
|
27
|
+
},
|
|
28
|
+
}
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
{
|
|
2
|
+
"app": {
|
|
3
|
+
"head": {
|
|
4
|
+
"htmlAttrs": {
|
|
5
|
+
"lang": "en",
|
|
6
|
+
},
|
|
7
|
+
"title": "Nuxt Ignis App",
|
|
8
|
+
},
|
|
9
|
+
},
|
|
10
|
+
"css": [
|
|
11
|
+
"custom.css",
|
|
12
|
+
"C:\Git\nuxt-ignis\core\assets\css\ignis.css",
|
|
13
|
+
"C:\Git\nuxt-ignis\core\assets\css\ignis-tailwind.css",
|
|
14
|
+
],
|
|
15
|
+
"modules": [
|
|
16
|
+
"@nuxt/eslint",
|
|
17
|
+
"@nuxt/fonts",
|
|
18
|
+
"@nuxt/image",
|
|
19
|
+
"@nuxt/scripts",
|
|
20
|
+
"nuxt-security",
|
|
21
|
+
"@vueuse/nuxt",
|
|
22
|
+
"@pinia/nuxt",
|
|
23
|
+
],
|
|
24
|
+
"vite": {
|
|
25
|
+
"plugins": [
|
|
26
|
+
{
|
|
27
|
+
"apply": "build",
|
|
28
|
+
"configResolved": [Function],
|
|
29
|
+
"name": "vite-plugin-ignore-sourcemap-warnings",
|
|
30
|
+
},
|
|
31
|
+
[
|
|
32
|
+
{
|
|
33
|
+
"configResolved": [Function],
|
|
34
|
+
"configureServer": [Function],
|
|
35
|
+
"enforce": "pre",
|
|
36
|
+
"name": "@tailwindcss/vite:scan",
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"apply": "serve",
|
|
40
|
+
"enforce": "pre",
|
|
41
|
+
"name": "@tailwindcss/vite:generate:serve",
|
|
42
|
+
"transform": [Function],
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"apply": "build",
|
|
46
|
+
"enforce": "pre",
|
|
47
|
+
"name": "@tailwindcss/vite:generate:build",
|
|
48
|
+
"transform": [Function],
|
|
49
|
+
},
|
|
50
|
+
],
|
|
51
|
+
],
|
|
52
|
+
},
|
|
53
|
+
"vue": {
|
|
54
|
+
"compilerOptions": {
|
|
55
|
+
"isCustomElement": [Function],
|
|
56
|
+
},
|
|
57
|
+
},
|
|
58
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{
|
|
2
|
+
"app": {
|
|
3
|
+
"head": {
|
|
4
|
+
"htmlAttrs": {
|
|
5
|
+
"lang": "en-US",
|
|
6
|
+
},
|
|
7
|
+
"title": "Nuxt Ignis App",
|
|
8
|
+
},
|
|
9
|
+
},
|
|
10
|
+
"css": [
|
|
11
|
+
"C:\Git\nuxt-ignis\core\assets\css\ignis.css",
|
|
12
|
+
],
|
|
13
|
+
"modules": [
|
|
14
|
+
"@nuxt/eslint",
|
|
15
|
+
"@nuxt/fonts",
|
|
16
|
+
"@nuxt/image",
|
|
17
|
+
"@nuxt/scripts",
|
|
18
|
+
"nuxt-security",
|
|
19
|
+
"@vueuse/nuxt",
|
|
20
|
+
"@pinia/nuxt",
|
|
21
|
+
],
|
|
22
|
+
"vue": {
|
|
23
|
+
"compilerOptions": {
|
|
24
|
+
"isCustomElement": [Function],
|
|
25
|
+
},
|
|
26
|
+
},
|
|
27
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
{
|
|
2
|
+
"app": {
|
|
3
|
+
"head": {
|
|
4
|
+
"htmlAttrs": {
|
|
5
|
+
"lang": "en",
|
|
6
|
+
},
|
|
7
|
+
"title": "Nuxt Ignis App",
|
|
8
|
+
},
|
|
9
|
+
},
|
|
10
|
+
"css": [
|
|
11
|
+
"C:\Git\nuxt-ignis\core\assets\css\ignis.css",
|
|
12
|
+
],
|
|
13
|
+
"modules": [
|
|
14
|
+
"@nuxt/eslint",
|
|
15
|
+
"@nuxt/fonts",
|
|
16
|
+
"@nuxt/image",
|
|
17
|
+
"@nuxt/scripts",
|
|
18
|
+
"nuxt-security",
|
|
19
|
+
"@vueuse/nuxt",
|
|
20
|
+
"@pinia/nuxt",
|
|
21
|
+
"nuxt-neon",
|
|
22
|
+
],
|
|
23
|
+
"vue": {
|
|
24
|
+
"compilerOptions": {
|
|
25
|
+
"isCustomElement": [Function],
|
|
26
|
+
},
|
|
27
|
+
},
|
|
28
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
{
|
|
2
|
+
"app": {
|
|
3
|
+
"head": {
|
|
4
|
+
"htmlAttrs": {
|
|
5
|
+
"lang": "en",
|
|
6
|
+
},
|
|
7
|
+
"title": "Nuxt Ignis App",
|
|
8
|
+
},
|
|
9
|
+
},
|
|
10
|
+
"css": [
|
|
11
|
+
"C:\Git\nuxt-ignis\core\assets\css\ignis.css",
|
|
12
|
+
],
|
|
13
|
+
"modules": [
|
|
14
|
+
"@nuxt/eslint",
|
|
15
|
+
"@nuxt/fonts",
|
|
16
|
+
"@nuxt/image",
|
|
17
|
+
"@nuxt/scripts",
|
|
18
|
+
"nuxt-security",
|
|
19
|
+
"@vueuse/nuxt",
|
|
20
|
+
"@pinia/nuxt",
|
|
21
|
+
"@nuxtjs/supabase",
|
|
22
|
+
],
|
|
23
|
+
"supabase": {
|
|
24
|
+
"redirect": false,
|
|
25
|
+
},
|
|
26
|
+
"vue": {
|
|
27
|
+
"compilerOptions": {
|
|
28
|
+
"isCustomElement": [Function],
|
|
29
|
+
},
|
|
30
|
+
},
|
|
31
|
+
}
|
package/test/config/default.txt
CHANGED
|
@@ -1,16 +1,27 @@
|
|
|
1
|
-
{
|
|
2
|
-
"
|
|
3
|
-
"
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
1
|
+
{
|
|
2
|
+
"app": {
|
|
3
|
+
"head": {
|
|
4
|
+
"htmlAttrs": {
|
|
5
|
+
"lang": "en",
|
|
6
|
+
},
|
|
7
|
+
"title": "Nuxt Ignis App",
|
|
8
|
+
},
|
|
9
|
+
},
|
|
10
|
+
"css": [
|
|
11
|
+
"C:\Git\nuxt-ignis\core\assets\css\ignis.css",
|
|
12
|
+
],
|
|
13
|
+
"modules": [
|
|
14
|
+
"@nuxt/eslint",
|
|
15
|
+
"@nuxt/fonts",
|
|
16
|
+
"@nuxt/image",
|
|
17
|
+
"@nuxt/scripts",
|
|
18
|
+
"nuxt-security",
|
|
19
|
+
"@vueuse/nuxt",
|
|
20
|
+
"@pinia/nuxt",
|
|
21
|
+
],
|
|
22
|
+
"vue": {
|
|
23
|
+
"compilerOptions": {
|
|
24
|
+
"isCustomElement": [Function],
|
|
25
|
+
},
|
|
26
|
+
},
|
|
16
27
|
}
|
|
@@ -1,22 +1,33 @@
|
|
|
1
|
-
{
|
|
2
|
-
"
|
|
3
|
-
"
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
"
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
1
|
+
{
|
|
2
|
+
"app": {
|
|
3
|
+
"head": {
|
|
4
|
+
"htmlAttrs": {
|
|
5
|
+
"lang": "en",
|
|
6
|
+
},
|
|
7
|
+
"title": "Nuxt Ignis App",
|
|
8
|
+
},
|
|
9
|
+
},
|
|
10
|
+
"css": [
|
|
11
|
+
"C:\Git\nuxt-ignis\core\assets\css\ignis.css",
|
|
12
|
+
],
|
|
13
|
+
"modules": [
|
|
14
|
+
"@nuxt/eslint",
|
|
15
|
+
"@nuxt/fonts",
|
|
16
|
+
"@nuxt/image",
|
|
17
|
+
"@nuxt/scripts",
|
|
18
|
+
"nuxt-security",
|
|
19
|
+
"@vueuse/nuxt",
|
|
20
|
+
"@pinia/nuxt",
|
|
21
|
+
"@maas/vue-equipment/nuxt",
|
|
22
|
+
],
|
|
23
|
+
"vue": {
|
|
24
|
+
"compilerOptions": {
|
|
25
|
+
"isCustomElement": [Function],
|
|
26
|
+
},
|
|
27
|
+
},
|
|
28
|
+
"vueEquipment": {
|
|
29
|
+
"composables": [
|
|
30
|
+
"useScrollTo",
|
|
31
|
+
],
|
|
32
|
+
},
|
|
22
33
|
}
|
|
@@ -1,23 +1,34 @@
|
|
|
1
|
-
{
|
|
2
|
-
"
|
|
3
|
-
"
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
"
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
1
|
+
{
|
|
2
|
+
"app": {
|
|
3
|
+
"head": {
|
|
4
|
+
"htmlAttrs": {
|
|
5
|
+
"lang": "en",
|
|
6
|
+
},
|
|
7
|
+
"title": "Nuxt Ignis App",
|
|
8
|
+
},
|
|
9
|
+
},
|
|
10
|
+
"css": [
|
|
11
|
+
"C:\Git\nuxt-ignis\core\assets\css\ignis.css",
|
|
12
|
+
],
|
|
13
|
+
"modules": [
|
|
14
|
+
"@nuxt/eslint",
|
|
15
|
+
"@nuxt/fonts",
|
|
16
|
+
"@nuxt/image",
|
|
17
|
+
"@nuxt/scripts",
|
|
18
|
+
"nuxt-security",
|
|
19
|
+
"@vueuse/nuxt",
|
|
20
|
+
"@pinia/nuxt",
|
|
21
|
+
"@maas/vue-equipment/nuxt",
|
|
22
|
+
],
|
|
23
|
+
"vue": {
|
|
24
|
+
"compilerOptions": {
|
|
25
|
+
"isCustomElement": [Function],
|
|
26
|
+
},
|
|
27
|
+
},
|
|
28
|
+
"vueEquipment": {
|
|
29
|
+
"plugins": [
|
|
30
|
+
"MagicMenu",
|
|
31
|
+
"MagicModal",
|
|
32
|
+
],
|
|
33
|
+
},
|
|
23
34
|
}
|
|
@@ -1,28 +1,39 @@
|
|
|
1
|
-
{
|
|
2
|
-
"
|
|
3
|
-
"
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
"
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
"
|
|
26
|
-
|
|
27
|
-
},
|
|
1
|
+
{
|
|
2
|
+
"app": {
|
|
3
|
+
"head": {
|
|
4
|
+
"htmlAttrs": {
|
|
5
|
+
"lang": "en",
|
|
6
|
+
},
|
|
7
|
+
"title": "Nuxt Ignis App",
|
|
8
|
+
},
|
|
9
|
+
},
|
|
10
|
+
"css": [
|
|
11
|
+
"C:\Git\nuxt-ignis\core\assets\css\ignis.css",
|
|
12
|
+
],
|
|
13
|
+
"modules": [
|
|
14
|
+
"@nuxt/eslint",
|
|
15
|
+
"@nuxt/fonts",
|
|
16
|
+
"@nuxt/image",
|
|
17
|
+
"@nuxt/scripts",
|
|
18
|
+
"nuxt-security",
|
|
19
|
+
"@vueuse/nuxt",
|
|
20
|
+
"@pinia/nuxt",
|
|
21
|
+
"@maas/vue-equipment/nuxt",
|
|
22
|
+
],
|
|
23
|
+
"vue": {
|
|
24
|
+
"compilerOptions": {
|
|
25
|
+
"isCustomElement": [Function],
|
|
26
|
+
},
|
|
27
|
+
},
|
|
28
|
+
"vueEquipment": {
|
|
29
|
+
"composables": [
|
|
30
|
+
"useCountdown",
|
|
31
|
+
"useScrollTo",
|
|
32
|
+
],
|
|
33
|
+
"plugins": [
|
|
34
|
+
"MagicMenu",
|
|
35
|
+
"MagicModal",
|
|
36
|
+
"MagicCookie",
|
|
37
|
+
],
|
|
38
|
+
},
|
|
28
39
|
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
{
|
|
2
|
+
"app": {
|
|
3
|
+
"head": {
|
|
4
|
+
"htmlAttrs": {
|
|
5
|
+
"lang": "en",
|
|
6
|
+
},
|
|
7
|
+
"title": "Nuxt Ignis App",
|
|
8
|
+
},
|
|
9
|
+
},
|
|
10
|
+
"css": [
|
|
11
|
+
"C:\Git\nuxt-ignis\core\assets\css\ignis.css",
|
|
12
|
+
],
|
|
13
|
+
"formkit": {
|
|
14
|
+
"autoImport": true,
|
|
15
|
+
"configFile": "./formkit.config.ts",
|
|
16
|
+
},
|
|
17
|
+
"modules": [
|
|
18
|
+
"@nuxt/eslint",
|
|
19
|
+
"@nuxt/fonts",
|
|
20
|
+
"@nuxt/image",
|
|
21
|
+
"@nuxt/scripts",
|
|
22
|
+
"nuxt-security",
|
|
23
|
+
"@vueuse/nuxt",
|
|
24
|
+
"@pinia/nuxt",
|
|
25
|
+
"@formkit/nuxt",
|
|
26
|
+
],
|
|
27
|
+
"vue": {
|
|
28
|
+
"compilerOptions": {
|
|
29
|
+
"isCustomElement": [Function],
|
|
30
|
+
},
|
|
31
|
+
},
|
|
32
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
{
|
|
2
|
+
"app": {
|
|
3
|
+
"head": {
|
|
4
|
+
"htmlAttrs": {
|
|
5
|
+
"lang": "en",
|
|
6
|
+
},
|
|
7
|
+
"title": "Nuxt Ignis App",
|
|
8
|
+
},
|
|
9
|
+
},
|
|
10
|
+
"css": [
|
|
11
|
+
"C:\Git\nuxt-ignis\core\assets\css\ignis.css",
|
|
12
|
+
],
|
|
13
|
+
"modules": [
|
|
14
|
+
"@nuxt/eslint",
|
|
15
|
+
"@nuxt/fonts",
|
|
16
|
+
"@nuxt/image",
|
|
17
|
+
"@nuxt/scripts",
|
|
18
|
+
"nuxt-security",
|
|
19
|
+
"@vueuse/nuxt",
|
|
20
|
+
"@pinia/nuxt",
|
|
21
|
+
"@vueform/nuxt",
|
|
22
|
+
],
|
|
23
|
+
"vue": {
|
|
24
|
+
"compilerOptions": {
|
|
25
|
+
"isCustomElement": [Function],
|
|
26
|
+
},
|
|
27
|
+
},
|
|
28
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
{
|
|
2
|
+
"app": {
|
|
3
|
+
"head": {
|
|
4
|
+
"htmlAttrs": {
|
|
5
|
+
"lang": "en",
|
|
6
|
+
},
|
|
7
|
+
"title": "Nuxt Ignis App",
|
|
8
|
+
},
|
|
9
|
+
},
|
|
10
|
+
"css": [
|
|
11
|
+
"C:\Git\nuxt-ignis\core\assets\css\ignis.css",
|
|
12
|
+
],
|
|
13
|
+
"i18n": {
|
|
14
|
+
"bundle": {
|
|
15
|
+
"optimizeTranslationDirective": false,
|
|
16
|
+
},
|
|
17
|
+
"locales": [
|
|
18
|
+
"en",
|
|
19
|
+
],
|
|
20
|
+
"strategy": "no_prefix",
|
|
21
|
+
"vueI18n": "./i18n.config.ts",
|
|
22
|
+
},
|
|
23
|
+
"modules": [
|
|
24
|
+
"@nuxt/eslint",
|
|
25
|
+
"@nuxt/fonts",
|
|
26
|
+
"@nuxt/image",
|
|
27
|
+
"@nuxt/scripts",
|
|
28
|
+
"nuxt-security",
|
|
29
|
+
"@vueuse/nuxt",
|
|
30
|
+
"@pinia/nuxt",
|
|
31
|
+
"@nuxtjs/i18n",
|
|
32
|
+
],
|
|
33
|
+
"vue": {
|
|
34
|
+
"compilerOptions": {
|
|
35
|
+
"isCustomElement": [Function],
|
|
36
|
+
},
|
|
37
|
+
},
|
|
38
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
{
|
|
2
|
+
"app": {
|
|
3
|
+
"head": {
|
|
4
|
+
"htmlAttrs": {
|
|
5
|
+
"lang": "en",
|
|
6
|
+
},
|
|
7
|
+
"title": "Nuxt Ignis App",
|
|
8
|
+
},
|
|
9
|
+
},
|
|
10
|
+
"modules": [
|
|
11
|
+
"@nuxt/eslint",
|
|
12
|
+
"@nuxt/fonts",
|
|
13
|
+
"@nuxt/image",
|
|
14
|
+
"@nuxt/scripts",
|
|
15
|
+
"nuxt-security",
|
|
16
|
+
"@vueuse/nuxt",
|
|
17
|
+
"@pinia/nuxt",
|
|
18
|
+
],
|
|
19
|
+
"vue": {
|
|
20
|
+
"compilerOptions": {
|
|
21
|
+
"isCustomElement": [Function],
|
|
22
|
+
},
|
|
23
|
+
},
|
|
24
|
+
}
|