nuxt-ignis 0.3.2 → 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.
Files changed (152) hide show
  1. package/.data/content/contents.sqlite +0 -0
  2. package/.env +8 -2
  3. package/.nuxt/app.config.mjs +2 -2
  4. package/.nuxt/cache/fonts/EP1810cmAtyahQPDHB6nvBzRkIG5RcNv4u5vTy1aYHU-Ih_Po7WkbhDymI0Y_ntmpz__bZJprHiu7_c5N_X6AAA.woff2 +0 -0
  5. package/.nuxt/cache/fonts/JNWOTRocaYj0gq52vW_s7sHAdSMUetrRmhhggCVxyZ0-TnR4PP30hI5UWldZ0knUBrHkvIoiDWYXwn2v1NtCh80.woff2 +0 -0
  6. package/.nuxt/cache/fonts/XbAtjIvy1UErjg9eu_v7X3zPLS_AwsmqVsR9fG-JB6o-H99o9_8BZXq7ey5UyS99Wn9zX0V0anvpXEqAqavcJlQ.woff2 +0 -0
  7. package/.nuxt/cache/fonts/ZLm6CLvwhQbamZ73M80jbqz7DuOkHlT_HRyXHG7YfVs-eYLoSJPWhqR5CE0c8XPABls8kE_7Fc7F2x7Gtfsg_8M.woff2 +0 -0
  8. package/.nuxt/cache/fonts/aPa9az0DeE4U5rqM-Ov0Vl_obQis_d6sScLNygGkvxw-s32Y9TxBLZRr_ebRHQ3l3q1g2j_0tPT879PPSBGrj8A.woff2 +0 -0
  9. package/.nuxt/cache/fonts/kgyHMsxRmhh06xcV0yKMKdTKQBsQpXGi7erqwaqgjXg-55rzD39AWoqYSkQOLHuoKZUDVcDSlXRKdaymIN2dXes.woff +0 -0
  10. package/.nuxt/components.d.ts +606 -394
  11. package/.nuxt/content/components.ts +107 -98
  12. package/.nuxt/content/database.compressed.mjs +1 -1
  13. package/.nuxt/content/manifest.ts +6 -6
  14. package/.nuxt/content/sql_dump.txt +5 -0
  15. package/.nuxt/content/types.d.ts +8 -0
  16. package/.nuxt/dev/index.mjs +1598 -550
  17. package/.nuxt/dev/index.mjs.map +1 -1
  18. package/.nuxt/dist/server/client.manifest.json +2 -2
  19. package/.nuxt/dist/server/client.manifest.mjs +2 -2
  20. package/.nuxt/eslint-typegen.d.ts +256 -225
  21. package/.nuxt/eslint.config.d.mts +3 -3
  22. package/.nuxt/eslint.config.mjs +11 -11
  23. package/.nuxt/imports.d.ts +74 -56
  24. package/.nuxt/manifest/latest.json +1 -1
  25. package/.nuxt/manifest/meta/dev.json +1 -1
  26. package/.nuxt/mdc-image-component.mjs +1 -1
  27. package/.nuxt/module/@nuxtjs-sitemap.d.ts +9 -8
  28. package/.nuxt/module/nuxt-robots.d.ts +37 -7
  29. package/.nuxt/{modules/@nuxt-scripts.d.ts → module/nuxt-scripts.d.ts} +1 -2
  30. package/.nuxt/module/nuxt-seo-utils.assets.d.ts +3 -3
  31. package/.nuxt/module/nuxt-seo-utils.d.ts +20 -6
  32. package/.nuxt/module/nuxt-site-config.d.ts +8 -8
  33. package/.nuxt/nitro.json +5 -5
  34. package/.nuxt/nuxt.d.ts +14 -11
  35. package/.nuxt/nuxt.json +2 -2
  36. package/.nuxt/tsconfig.json +235 -153
  37. package/.nuxt/tsconfig.server.json +126 -92
  38. package/.nuxt/types/app.config.d.ts +2 -2
  39. package/.nuxt/types/build.d.ts +2 -1
  40. package/.nuxt/types/i18n-plugin.d.ts +2 -2
  41. package/.nuxt/types/imports.d.ts +413 -318
  42. package/.nuxt/types/nitro-config.d.ts +2 -2
  43. package/.nuxt/types/nitro-imports.d.ts +143 -134
  44. package/.nuxt/types/nitro-nuxt.d.ts +2 -0
  45. package/.nuxt/types/nitro-routes.d.ts +17 -17
  46. package/.nuxt/types/plugins.d.ts +35 -34
  47. package/.nuxt/types/schema.d.ts +360 -36
  48. package/.nuxt/ui/avatar.ts +1 -1
  49. package/.nuxt/ui/card.ts +1 -1
  50. package/.nuxt/ui/carousel.ts +1 -1
  51. package/.nuxt/ui/command-palette.ts +1 -0
  52. package/.nuxt/ui/drawer.ts +1 -1
  53. package/.nuxt/ui/index.ts +2 -0
  54. package/.nuxt/ui/input-menu.ts +24 -10
  55. package/.nuxt/ui/input-tags.ts +310 -0
  56. package/.nuxt/ui/modal.ts +1 -1
  57. package/.nuxt/ui/navigation-menu.ts +1 -1
  58. package/.nuxt/ui/select-menu.ts +11 -6
  59. package/.nuxt/ui/select.ts +11 -6
  60. package/.nuxt/ui/table.ts +3 -2
  61. package/.nuxt/ui/timeline.ts +321 -0
  62. package/.nuxt/ui/toaster.ts +1 -1
  63. package/.nuxt/ui-image-component.ts +1 -1
  64. package/app.vue +4 -8
  65. package/assets/css/ignis-nuxt-ui.css +24 -0
  66. package/assets/css/{open-props.css → ignis-open-props.css} +1 -1
  67. package/assets/css/ignis-tailwind.css +23 -0
  68. package/assets/css/ignis.css +31 -0
  69. package/bin/make-eslint.js +55 -0
  70. package/components/CurrentTime.vue +1 -1
  71. package/components/ignis/IgnisConfig.vue +38 -0
  72. package/components/{AppFeature.vue → ignis/IgnisFeature.vue} +2 -1
  73. package/components/ignis/IgnisFeatureList.vue +125 -0
  74. package/components/ignis/IgnisFooter.vue +2 -2
  75. package/components/ignis/IgnisHeader.vue +4 -3
  76. package/components/ignis/IgnisInfo.vue +14 -13
  77. package/components/ignis/IgnisWelcome.vue +65 -0
  78. package/composables/useTranslation.ts +18 -9
  79. package/composables/useValibot.ts +16 -0
  80. package/composables/useZod.ts +16 -0
  81. package/features.ts +97 -15
  82. package/formkit.config.ts +8 -8
  83. package/i18n/locales/en.json +12 -4
  84. package/nuxt.config.ts +44 -6
  85. package/package.json +32 -20
  86. package/pages/_ignis-config.vue +3 -0
  87. package/pages/_ignis-info.vue +3 -0
  88. package/pages/index.vue +4 -6
  89. package/plugins/errorHandler.ts +26 -0
  90. package/public/_ignis-config.json +97 -0
  91. package/test/config/css-multiple.txt +30 -0
  92. package/test/config/css-nuxt-ui.txt +34 -0
  93. package/test/config/css-open-props.txt +2307 -0
  94. package/test/config/css-single.txt +28 -0
  95. package/test/config/css-tailwind.txt +58 -0
  96. package/test/config/custom-lang.txt +27 -0
  97. package/test/config/db-neon.txt +28 -0
  98. package/test/config/db-supabase.txt +31 -0
  99. package/test/config/default.txt +27 -0
  100. package/test/config/equipment-1-composable.txt +33 -0
  101. package/test/config/equipment-2-plugins.txt +34 -0
  102. package/test/config/equipment-all.txt +39 -0
  103. package/test/config/forms-formkit.txt +32 -0
  104. package/test/config/forms-vueform.txt +28 -0
  105. package/test/config/i18n.txt +38 -0
  106. package/test/config/no-default-css.txt +24 -0
  107. package/test/config/open-props.txt +2306 -0
  108. package/test/config/seo-ssr-false.txt +35 -0
  109. package/test/config/ui-nuxt-ui.txt +33 -0
  110. package/test/config/ui-tailwind.txt +57 -0
  111. package/test/config.test.ts +162 -0
  112. package/test/features/charts.txt +4 -0
  113. package/test/features/custom-css.txt +4 -0
  114. package/test/features/custom-title.txt +4 -0
  115. package/test/features/db-neon.txt +3 -2
  116. package/test/features/db-off.txt +3 -2
  117. package/test/features/db-supabase.txt +3 -2
  118. package/test/features/default.txt +3 -2
  119. package/test/features/disable-core.txt +2 -1
  120. package/test/features/enable-all.txt +3 -2
  121. package/test/features/equipment.txt +4 -0
  122. package/test/features/forms-formkit.txt +3 -2
  123. package/test/features/forms-off.txt +3 -2
  124. package/test/features/forms-vueform.txt +3 -2
  125. package/test/features/no-default-css.txt +4 -0
  126. package/test/features/regexp.txt +4 -0
  127. package/test/features/ui-nuxt-ui.txt +3 -2
  128. package/test/features/ui-off.txt +3 -2
  129. package/test/features/ui-tailwind.txt +3 -2
  130. package/test/features/validation-off.txt +4 -0
  131. package/test/features/validation-valibot.txt +5 -0
  132. package/test/features/validation-zod.txt +5 -0
  133. package/test/features.test.ts +84 -0
  134. package/utils/config/content.ts +35 -0
  135. package/utils/config/formkit.ts +23 -0
  136. package/utils/config/vueform.ts +25 -0
  137. package/utils/consola.ts +23 -13
  138. package/utils/content.ts +12 -25
  139. package/utils/formkit.ts +16 -0
  140. package/utils/vueform.ts +14 -11
  141. package/vueform.config.ts +3 -5
  142. package/.nuxt/content/sql_dump +0 -6
  143. package/app.config.ts +0 -3
  144. package/assets/css/nuxt-ui.css +0 -16
  145. package/assets/css/tailwind.css +0 -15
  146. package/components/AppFeatureList.vue +0 -119
  147. package/content/second.md +0 -11
  148. package/pages/ignis.vue +0 -3
  149. package/pages/second.vue +0 -59
  150. package/tailwind.config.ts +0 -29
  151. package/utils/config/content.config.ts +0 -12
  152. package/utils/config/vueform.config.ts +0 -20
package/nuxt.config.ts CHANGED
@@ -1,3 +1,5 @@
1
+ import { writeFileSync, existsSync, mkdirSync } from 'fs'
2
+ import { dirname } from 'path'
1
3
  import { defu } from 'defu'
2
4
  import { setFeatures } from './features'
3
5
 
@@ -11,8 +13,8 @@ const nuxtConfig = defu(ignisFeatures, {
11
13
  'nuxt-spec',
12
14
  ],
13
15
 
14
- // https://nuxt.com/docs/api/nuxt-config#compatibilitydate
15
- compatibilityDate: '2025-06-07',
16
+ // https://nuxt.com/docs/3.x/api/nuxt-config#compatibilitydate
17
+ compatibilityDate: '2025-07-19',
16
18
 
17
19
  // simple eslint config - see eslint.config.mjs
18
20
  eslint: {
@@ -42,33 +44,47 @@ const nuxtConfig = defu(ignisFeatures, {
42
44
  // actual values MUST BE provided via .env file (or production equivalent)
43
45
  ignis: {
44
46
 
47
+ html: {
48
+ // HTML lang attribute,
49
+ lang: 'en',
50
+ // HTML page title,
51
+ title: 'Nuxt Ignis App',
52
+ },
53
+
45
54
  // logging
46
55
  log: {
47
56
  level: 'info',
48
57
  },
49
58
 
59
+ // central error handler
60
+ error: true, // true/false
61
+
50
62
  // nuxt-related config
51
63
  ssr: true, // true/false
52
64
  pages: true, // true/false
53
65
 
66
+ // custom css files
67
+ css: '',
68
+
54
69
  // presets
55
70
  preset: {
56
71
  ui: 'off', // nuxt-ui/tailwind/off
57
72
  db: 'off', // neon/supabase/off
58
73
  forms: 'off', // formkit/vueform/off
74
+ validation: 'off', // valibot/zod/off
59
75
  },
60
76
 
61
77
  // core modules
62
78
  // (may be disabled by explicitly setting "false")
63
79
  core: {
80
+ css: true, // not a module, but a default css file
64
81
  eslint: true,
65
82
  fonts: true,
66
83
  image: true,
67
- pinia: true,
68
- time: true,
69
84
  scripts: true,
70
85
  security: true,
71
86
  vueuse: true,
87
+ pinia: true,
72
88
  },
73
89
 
74
90
  // optional modules
@@ -87,14 +103,23 @@ const nuxtConfig = defu(ignisFeatures, {
87
103
  config: './formkit.config.ts', // path to config file
88
104
  },
89
105
  vueform: false, // true/false
106
+ valibot: false, // true/false
107
+ zod: false, // true/false
90
108
  content: false, // true/false
109
+ seo: false, // true/false
110
+ auth: false, // true/false
91
111
  openprops: false, // true/false
92
112
  pslo: {
93
113
  enabled: false, // true/false (elrh-pslo will (not) be used)
94
114
  content: false, // true/false (elrh-pslo will (not) be aplied on nuxt-content)
95
115
  },
96
- seo: false, // true/false
97
- auth: false, // true/false
116
+ equipment: {
117
+ enabled: false, // true/false
118
+ composables: '', // list of Vue Equipment composables
119
+ plugins: '', // list of Vue Equipment plugins
120
+ },
121
+ regexp: false, // true/false
122
+ charts: false, // true/false
98
123
 
99
124
  // extra behavior
100
125
  warn: {
@@ -103,6 +128,19 @@ const nuxtConfig = defu(ignisFeatures, {
103
128
  },
104
129
  },
105
130
  },
131
+ hooks: {
132
+ 'schema:resolved'() {
133
+ const ignisConfig = JSON.stringify(ignisFeatures, null, 2)
134
+ const outPath = './public/_ignis-config.json'
135
+
136
+ const outDir = dirname(outPath)
137
+ if (!existsSync(outDir)) {
138
+ mkdirSync(outDir, { recursive: true })
139
+ }
140
+
141
+ writeFileSync(outPath, ignisConfig)
142
+ },
143
+ },
106
144
  })
107
145
 
108
146
  // https://nuxt.com/docs/getting-started/configuration#nuxt-configuration
package/package.json CHANGED
@@ -1,12 +1,14 @@
1
1
  {
2
2
  "name": "nuxt-ignis",
3
- "version": "0.3.2",
4
- "description": "Enhanced and customizable Nuxt application starter pack",
3
+ "version": "0.4.0-rc.1",
4
+ "description": "A ready-to-use setup for your next application in Nuxt",
5
5
  "keywords": [
6
6
  "nuxt",
7
7
  "nuxtjs",
8
8
  "nuxt3",
9
- "starter"
9
+ "starter",
10
+ "layer",
11
+ "nuxt-layer"
10
12
  ],
11
13
  "author": "Alois Seckar <alois.seckar@gmail.com>",
12
14
  "homepage": "https://github.com/AloisSeckar/nuxt-ignis",
@@ -22,40 +24,50 @@
22
24
  "type": "module",
23
25
  "main": "./nuxt.config.ts",
24
26
  "engines": {
25
- "node": ">=18.0.0"
27
+ "node": "^20.19.0 || >=22.12.0"
28
+ },
29
+ "bin": {
30
+ "make-eslint": "./bin/make-eslint.js"
26
31
  },
27
32
  "dependencies": {
28
33
  "@formkit/nuxt": "1.6.9",
29
- "@nuxt/content": "3.5.1",
30
- "@nuxt/eslint": "1.4.1",
34
+ "@maas/vue-equipment": "1.0.0-beta.32",
35
+ "@nuxt/content": "3.6.3",
36
+ "@nuxt/eslint": "1.6.0",
31
37
  "@nuxt/fonts": "0.11.4",
32
38
  "@nuxt/image": "1.10.0",
33
- "@nuxt/scripts": "0.11.8",
34
- "@nuxt/ui": "3.1.3",
35
- "@nuxtjs/i18n": "9.5.5",
36
- "@nuxtjs/seo": "3.0.3",
37
- "@nuxtjs/supabase": "1.5.1",
39
+ "@nuxt/scripts": "0.11.10",
40
+ "@nuxt/ui": "3.2.0",
41
+ "@nuxtjs/i18n": "9.5.6",
42
+ "@nuxtjs/seo": "3.1.0",
43
+ "@nuxtjs/supabase": "1.5.3",
38
44
  "@nuxtjs/tailwindcss": "6.14.0",
39
- "@pinia/nuxt": "0.11.1",
40
- "@vueform/nuxt": "1.15.0",
41
- "@vueuse/core": "13.3.0",
42
- "@vueuse/nuxt": "13.3.0",
43
- "@tailwindcss/vite": "4.1.8",
45
+ "@pinia/nuxt": "0.11.2",
46
+ "@tailwindcss/vite": "4.1.11",
47
+ "@vueform/nuxt": "1.17.0",
48
+ "@vueuse/core": "13.5.0",
49
+ "@vueuse/nuxt": "13.5.0",
50
+ "better-sqlite3": "12.2.0",
44
51
  "consola": "3.4.2",
52
+ "date-fns": "4.1.0",
45
53
  "defu": "6.1.4",
46
54
  "elrh-pslo": "1.1.6",
55
+ "magic-regexp": "0.10.0",
47
56
  "nuxt-auth-utils": "0.5.20",
57
+ "nuxt-charts": "0.1.11",
48
58
  "nuxt-neon": "0.6.2",
49
59
  "nuxt-security": "2.2.0",
50
60
  "nuxt-spec": "0.0.4",
51
- "open-props": "1.7.15",
61
+ "open-props": "1.7.16",
52
62
  "pinia": "3.0.3",
53
63
  "postcss-jit-props": "1.0.16",
54
- "typescript": "5.8.3"
64
+ "typescript": "5.8.3",
65
+ "valibot": "1.1.0",
66
+ "zod": "4.0.5"
55
67
  },
56
68
  "devDependencies": {
57
- "nuxt": "3.17.5",
58
- "vue": "3.5.16",
69
+ "nuxt": "3.17.7",
70
+ "vue": "3.5.17",
59
71
  "vue-router": "4.5.1"
60
72
  },
61
73
  "scripts": {
@@ -0,0 +1,3 @@
1
+ <template>
2
+ <IgnisInfo :content="'Config'" />
3
+ </template>
@@ -0,0 +1,3 @@
1
+ <template>
2
+ <IgnisInfo :content="'Features'" />
3
+ </template>
package/pages/index.vue CHANGED
@@ -4,14 +4,12 @@
4
4
  An example of Nuxt page.
5
5
  Nuxt automaticaly provides routing and displays this page when user visits root URL or `/index`.
6
6
 
7
- AppFeatureList
7
+ IgnisInfo
8
8
  - an example usage of auto-imported Nuxt component declared in `/components` directory
9
- - this contains a list of available features configured in current Nuxt Ignis setup
10
-
11
- NuxtLink
12
- - special component for improved handling for HTML links (<a> tags)
9
+ - it is a wrapper around couple of possible components defined by "content" prop
10
+ - this one contains a list of available features configured in current Nuxt Ignis setup
13
11
  -->
14
12
 
15
13
  <template>
16
- <IgnisInfo />
14
+ <IgnisInfo :content="'Welcome'" />
17
15
  </template>
@@ -0,0 +1,26 @@
1
+ // This registeres custom error and warn handlers within Nuxt Ignis app.
2
+ // You can set NUXT_PUBLIC_IGNIS_ERROR to 'false' to disable this feature.
3
+
4
+ export default defineNuxtPlugin((nuxtApp) => {
5
+ if (useRuntimeConfig().public.ignis.error) {
6
+ nuxtApp.vueApp.config.errorHandler = (err, instance, info) => {
7
+ log.error(err)
8
+ // capture additional context
9
+ log.debug(`Nuxt Ignis error handler - raw error:\n${err}`)
10
+ log.debug(`Nuxt Ignis error handler - source:\n${instance?.$options?.__name || 'Unknown'} (${instance?.$options?.__file || '???'})`)
11
+ log.debug(`Nuxt Ignis error handler - additional error context:\n${info}`)
12
+ }
13
+ nuxtApp.vueApp.config.warnHandler = (msg, instance, trace) => {
14
+ log.warn(msg)
15
+ // capture additional context
16
+ log.debug(`Nuxt Ignis warn handler - raw warning:\n${msg}`)
17
+ log.debug(`Nuxt Ignis warn handler - source:\n${instance?.$options?.__name || 'Unknown'} (${instance?.$options?.__file || '???'})`)
18
+ log.debug(`Nuxt Ignis warn handler - additional warn context:\n${trace}`)
19
+ }
20
+ // set NUXT_PUBLIC_IGNIS_ERROR=false to turn them off
21
+ log.info('Nuxt Ignis error/warn handlers were registered')
22
+ } else {
23
+ // set NUXT_PUBLIC_IGNIS_ERROR=true to turn them on
24
+ log.info('Nuxt Ignis error/warn handlers were NOT registered')
25
+ }
26
+ })
@@ -0,0 +1,97 @@
1
+ {
2
+ "modules": [
3
+ "@nuxt/eslint",
4
+ "@nuxt/fonts",
5
+ "@nuxt/image",
6
+ "@nuxt/scripts",
7
+ "nuxt-security",
8
+ "@vueuse/nuxt",
9
+ "@pinia/nuxt",
10
+ "@nuxt/ui",
11
+ "nuxt-neon",
12
+ "@nuxtjs/i18n",
13
+ "@vueform/nuxt",
14
+ "@nuxtjs/seo",
15
+ "@nuxt/content",
16
+ "nuxt-auth-utils",
17
+ "@maas/vue-equipment/nuxt",
18
+ "magic-regexp/nuxt",
19
+ "nuxt-charts"
20
+ ],
21
+ "css": [
22
+ "C:\\Git\\nuxt-ignis\\core\\assets\\css\\ignis.css",
23
+ "C:\\Git\\nuxt-ignis\\core\\assets\\css\\ignis-nuxt-ui.css"
24
+ ],
25
+ "vite": {
26
+ "plugins": [
27
+ {
28
+ "name": "vite-plugin-ignore-sourcemap-warnings",
29
+ "apply": "build"
30
+ }
31
+ ]
32
+ },
33
+ "i18n": {
34
+ "vueI18n": "./i18n.config.ts",
35
+ "locales": [
36
+ "en"
37
+ ],
38
+ "strategy": "no_prefix",
39
+ "bundle": {
40
+ "optimizeTranslationDirective": false
41
+ }
42
+ },
43
+ "ogImage": {
44
+ "enabled": false
45
+ },
46
+ "schemaOrg": {
47
+ "enabled": false
48
+ },
49
+ "ssr": false,
50
+ "app": {
51
+ "head": {
52
+ "link": [],
53
+ "meta": [
54
+ {
55
+ "name": "viewport",
56
+ "content": "width=device-width, initial-scale=1"
57
+ },
58
+ {
59
+ "charset": "utf-8"
60
+ },
61
+ {
62
+ "property": "og:type",
63
+ "content": "website"
64
+ }
65
+ ],
66
+ "style": [],
67
+ "script": [],
68
+ "noscript": [],
69
+ "htmlAttrs": {
70
+ "lang": "en-US"
71
+ },
72
+ "title": "Custom Nuxt Ignis App"
73
+ },
74
+ "baseURL": "/",
75
+ "buildAssetsDir": "/_nuxt/",
76
+ "cdnURL": "",
77
+ "layoutTransition": false,
78
+ "pageTransition": false,
79
+ "viewTransition": false,
80
+ "keepalive": false,
81
+ "rootId": "__nuxt",
82
+ "rootTag": "div",
83
+ "rootAttrs": {
84
+ "id": "__nuxt",
85
+ "class": "isolate"
86
+ },
87
+ "teleportTag": "div",
88
+ "teleportId": "teleports",
89
+ "teleportAttrs": {
90
+ "id": "teleports"
91
+ },
92
+ "spaLoaderTag": "div",
93
+ "spaLoaderAttrs": {
94
+ "id": "__nuxt-loader"
95
+ }
96
+ }
97
+ }
@@ -0,0 +1,30 @@
1
+ {
2
+ "app": {
3
+ "head": {
4
+ "htmlAttrs": {
5
+ "lang": "en",
6
+ },
7
+ "title": "Nuxt Ignis App",
8
+ },
9
+ },
10
+ "css": [
11
+ "first.css",
12
+ "second.css",
13
+ "third.css",
14
+ "C:\Git\nuxt-ignis\core\assets\css\ignis.css",
15
+ ],
16
+ "modules": [
17
+ "@nuxt/eslint",
18
+ "@nuxt/fonts",
19
+ "@nuxt/image",
20
+ "@nuxt/scripts",
21
+ "nuxt-security",
22
+ "@vueuse/nuxt",
23
+ "@pinia/nuxt",
24
+ ],
25
+ "vue": {
26
+ "compilerOptions": {
27
+ "isCustomElement": [Function],
28
+ },
29
+ },
30
+ }
@@ -0,0 +1,34 @@
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-nuxt-ui.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
+ "@nuxt/ui",
24
+ ],
25
+ "vite": {
26
+ "plugins": [
27
+ {
28
+ "apply": "build",
29
+ "configResolved": [Function],
30
+ "name": "vite-plugin-ignore-sourcemap-warnings",
31
+ },
32
+ ],
33
+ },
34
+ }