nuxt-ignis 0.1.10 → 0.2.0
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/CHANGELOG.md +5 -0
- package/README.md +3 -2
- package/content/second.md +7 -0
- package/features.ts +1 -0
- package/nuxt.config.ts +11 -1
- package/package.json +57 -55
- package/pages/second.vue +17 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.2.0 (2025-02-09)
|
|
4
|
+
- feat: breaking change update to `nuxt-content v3` - in case of problems, see [migration guide](https://content.nuxt.com/docs/getting-started/migration)
|
|
5
|
+
- feat: `nuxt-scripts` included into built-in dependencies
|
|
6
|
+
- build: Vite and Nuxt Kit version fix
|
|
7
|
+
|
|
3
8
|
## 0.1.10 (2025-02-06)
|
|
4
9
|
- feat: update `nuxt-neon` to allow server-side exports
|
|
5
10
|
- feat: remove `useIgnisI18n` again as it is NOT needed
|
package/README.md
CHANGED
|
@@ -20,7 +20,7 @@ Aside from being "forked", `nuxt-ignis` is also available as [NPM package](https
|
|
|
20
20
|
|
|
21
21
|
1) Add following dependency into your `package.json`:
|
|
22
22
|
```
|
|
23
|
-
"nuxt-ignis": "0.
|
|
23
|
+
"nuxt-ignis": "0.2.0"
|
|
24
24
|
```
|
|
25
25
|
|
|
26
26
|
2) Add following section into your `nuxt.config.ts`:
|
|
@@ -60,7 +60,8 @@ Without this workaround the project builds and deploys but will hit runtime erro
|
|
|
60
60
|
- zero-config OWASP security patterns for Nuxt via [`nuxt-security`](https://nuxt-security.vercel.app/)
|
|
61
61
|
- de-facto standard state management library for Vue apps via [`@pinia/nuxt`](https://pinia.vuejs.org/ssr/nuxt.html)
|
|
62
62
|
- integration with utility functions library for Vue apps via [`@vueuse/nuxt`](https://vueuse.org/nuxt/README.html)
|
|
63
|
-
- handful tools for working with images via [`@nuxt/image`](https://image.nuxt.com/)
|
|
63
|
+
- handful tools for working with images via [`@nuxt/image`](https://image.nuxt.com/)
|
|
64
|
+
- optimized scripts loading via [`@nuxt/scripts`](https://scripts.nuxt.com/)
|
|
64
65
|
- SSR-friendly component for rendering dynamic date/time via [`nuxt-time`](https://nuxt.com/modules/time)
|
|
65
66
|
- logging via [`consola](https://github.com/unjs/consola)
|
|
66
67
|
|
package/features.ts
CHANGED
package/nuxt.config.ts
CHANGED
|
@@ -12,7 +12,7 @@ const nuxtConfig = defu(ignisFeatures, {
|
|
|
12
12
|
],
|
|
13
13
|
|
|
14
14
|
// https://nuxt.com/docs/api/nuxt-config#compatibilitydate
|
|
15
|
-
compatibilityDate: '2025-
|
|
15
|
+
compatibilityDate: '2025-02-09',
|
|
16
16
|
|
|
17
17
|
// simple eslint config - see eslint.config.mjs
|
|
18
18
|
eslint: {
|
|
@@ -21,6 +21,16 @@ const nuxtConfig = defu(ignisFeatures, {
|
|
|
21
21
|
},
|
|
22
22
|
},
|
|
23
23
|
|
|
24
|
+
security: {
|
|
25
|
+
headers: {
|
|
26
|
+
contentSecurityPolicy: {
|
|
27
|
+
'script-src': ['\'self\'', 'https:', '\'strict-dynamic\'', '\'nonce-{{nonce}}\'', '\'wasm-unsafe-eval\''],
|
|
28
|
+
},
|
|
29
|
+
crossOriginEmbedderPolicy: 'require-corp',
|
|
30
|
+
crossOriginOpenerPolicy: 'same-origin',
|
|
31
|
+
},
|
|
32
|
+
},
|
|
33
|
+
|
|
24
34
|
// app configuration
|
|
25
35
|
runtimeConfig: {
|
|
26
36
|
// nitro-only secret env-like variables go here
|
package/package.json
CHANGED
|
@@ -1,55 +1,57 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "nuxt-ignis",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "Enhanced and customizable Nuxt application starter pack",
|
|
5
|
-
"repository": "github:AloisSeckar/nuxt-ignis",
|
|
6
|
-
"license": "MIT",
|
|
7
|
-
"type": "module",
|
|
8
|
-
"main": "./nuxt.config.ts",
|
|
9
|
-
"scripts": {
|
|
10
|
-
"analyze": "nuxt analyze",
|
|
11
|
-
"eslint": "eslint .",
|
|
12
|
-
"build": "nuxt build",
|
|
13
|
-
"dev": "nuxt dev",
|
|
14
|
-
"generate": "nuxt generate",
|
|
15
|
-
"preview": "nuxt preview",
|
|
16
|
-
"start": "nuxt start",
|
|
17
|
-
"test": "vitest run"
|
|
18
|
-
},
|
|
19
|
-
"dependencies": {
|
|
20
|
-
"@formkit/nuxt": "1.6.9",
|
|
21
|
-
"@nuxt/content": "
|
|
22
|
-
"@nuxt/eslint": "0.7.6",
|
|
23
|
-
"@nuxt/image": "1.9.0",
|
|
24
|
-
"@nuxt/ui": "2.21.0",
|
|
25
|
-
"@nuxtjs/i18n": "9.1.1",
|
|
26
|
-
"@nuxtjs/supabase": "1.4.6",
|
|
27
|
-
"@nuxtjs/tailwindcss": "6.13.1",
|
|
28
|
-
"@pinia/nuxt": "0.9.0",
|
|
29
|
-
"@vueuse/core": "12.5.0",
|
|
30
|
-
"@vueuse/nuxt": "12.5.0",
|
|
31
|
-
"consola": "3.4.0",
|
|
32
|
-
"defu": "6.1.4",
|
|
33
|
-
"elrh-pslo": "1.1.6",
|
|
34
|
-
"nuxt-neon": "0.3.1",
|
|
35
|
-
"nuxt
|
|
36
|
-
"nuxt-
|
|
37
|
-
"nuxt-
|
|
38
|
-
"
|
|
39
|
-
"
|
|
40
|
-
"
|
|
41
|
-
"
|
|
42
|
-
"
|
|
43
|
-
"vue
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
"
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "nuxt-ignis",
|
|
3
|
+
"version": "0.2.0",
|
|
4
|
+
"description": "Enhanced and customizable Nuxt application starter pack",
|
|
5
|
+
"repository": "github:AloisSeckar/nuxt-ignis",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"type": "module",
|
|
8
|
+
"main": "./nuxt.config.ts",
|
|
9
|
+
"scripts": {
|
|
10
|
+
"analyze": "nuxt analyze",
|
|
11
|
+
"eslint": "eslint .",
|
|
12
|
+
"build": "nuxt build",
|
|
13
|
+
"dev": "nuxt dev",
|
|
14
|
+
"generate": "nuxt generate",
|
|
15
|
+
"preview": "nuxt preview",
|
|
16
|
+
"start": "nuxt start",
|
|
17
|
+
"test": "vitest run"
|
|
18
|
+
},
|
|
19
|
+
"dependencies": {
|
|
20
|
+
"@formkit/nuxt": "1.6.9",
|
|
21
|
+
"@nuxt/content": "3.1.0",
|
|
22
|
+
"@nuxt/eslint": "0.7.6",
|
|
23
|
+
"@nuxt/image": "1.9.0",
|
|
24
|
+
"@nuxt/ui": "2.21.0",
|
|
25
|
+
"@nuxtjs/i18n": "9.1.1",
|
|
26
|
+
"@nuxtjs/supabase": "1.4.6",
|
|
27
|
+
"@nuxtjs/tailwindcss": "6.13.1",
|
|
28
|
+
"@pinia/nuxt": "0.9.0",
|
|
29
|
+
"@vueuse/core": "12.5.0",
|
|
30
|
+
"@vueuse/nuxt": "12.5.0",
|
|
31
|
+
"consola": "3.4.0",
|
|
32
|
+
"defu": "6.1.4",
|
|
33
|
+
"elrh-pslo": "1.1.6",
|
|
34
|
+
"nuxt-neon": "0.3.1",
|
|
35
|
+
"@nuxt/scripts": "0.10.1",
|
|
36
|
+
"nuxt-security": "2.1.5",
|
|
37
|
+
"nuxt-spec": "0.0.3",
|
|
38
|
+
"nuxt-time": "1.0.3",
|
|
39
|
+
"open-props": "1.7.12",
|
|
40
|
+
"pinia": "2.3.1",
|
|
41
|
+
"postcss-jit-props": "1.0.15",
|
|
42
|
+
"typescript": "latest",
|
|
43
|
+
"vue": "latest",
|
|
44
|
+
"vue-router": "latest"
|
|
45
|
+
},
|
|
46
|
+
"pnpm": {
|
|
47
|
+
"overrides": {
|
|
48
|
+
"vite": "^6.1.0",
|
|
49
|
+
"@nuxtjs/mdc": "^0.13.3",
|
|
50
|
+
"@nuxt/kit": "3.15.4"
|
|
51
|
+
}
|
|
52
|
+
},
|
|
53
|
+
"devDependencies": {
|
|
54
|
+
"nuxt": "3.15.4"
|
|
55
|
+
},
|
|
56
|
+
"packageManager": "pnpm@9.15.4"
|
|
57
|
+
}
|
package/pages/second.vue
CHANGED
|
@@ -26,6 +26,15 @@
|
|
|
26
26
|
<div class="mb-4 text-justify">
|
|
27
27
|
{{ processedText }}
|
|
28
28
|
</div>
|
|
29
|
+
<div class="mt-6 mb-2">
|
|
30
|
+
<strong>elrh-content test</strong>
|
|
31
|
+
</div>
|
|
32
|
+
<div class="mb-4 text-justify">
|
|
33
|
+
<div v-if="content">
|
|
34
|
+
<ContentRenderer v-if="contentData" :value="contentData" />
|
|
35
|
+
</div>
|
|
36
|
+
<span v-else>nuxt-content not enabled</span>
|
|
37
|
+
</div>
|
|
29
38
|
<div class="link">
|
|
30
39
|
<NuxtLink to="/">
|
|
31
40
|
{{ useT("goto1") }}
|
|
@@ -41,4 +50,12 @@ const rawText = 'Veřejné s autorská počítačové vyhotovení, popis vzorec
|
|
|
41
50
|
// this will or will not add non-brakable spaces
|
|
42
51
|
// based on NUXT_PUBLIC_IGNIS_PSLO_CONTENT setting
|
|
43
52
|
const processedText = pslo(rawText)
|
|
53
|
+
|
|
54
|
+
// data for nuxt-content rendering
|
|
55
|
+
const content = useRuntimeConfig().public.ignis.content
|
|
56
|
+
const route = useRoute()
|
|
57
|
+
console.log(route.path)
|
|
58
|
+
const { data: contentData } = await useAsyncData('second', () => {
|
|
59
|
+
return queryCollection('content').path('/second').first()
|
|
60
|
+
})
|
|
44
61
|
</script>
|