@dargmuesli/nuxt-vio 21.0.0-beta.10 → 21.0.0-beta.12
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.
|
@@ -81,7 +81,7 @@ const titleComputedLineClamp = lineClampStyle(titleComputed, 2)
|
|
|
81
81
|
</defs>
|
|
82
82
|
</svg>
|
|
83
83
|
|
|
84
|
-
<div class="max-w-175 pl-6 lg:pl-25">
|
|
84
|
+
<div class="flex max-w-175 flex-col pl-6 lg:pl-25">
|
|
85
85
|
<p
|
|
86
86
|
v-if="headline"
|
|
87
87
|
class="mb-4 text-[24px] font-bold text-[#00DC82] uppercase"
|
package/app/composables/head.ts
CHANGED
|
@@ -6,21 +6,14 @@ export const useAppLayout = () => {
|
|
|
6
6
|
const siteConfig = useSiteConfig()
|
|
7
7
|
|
|
8
8
|
if (import.meta.server) {
|
|
9
|
-
// style
|
|
10
9
|
useHeadSafe({
|
|
10
|
+
// style
|
|
11
11
|
bodyAttrs: {
|
|
12
12
|
class:
|
|
13
13
|
'bg-background-bright dark:bg-background-dark text-text-dark dark:text-text-bright',
|
|
14
14
|
},
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
// favicon (https://vite-pwa-org.netlify.app/assets-generator/)
|
|
18
|
-
useHeadSafe({
|
|
15
|
+
// favicon (https://vite-pwa-org.netlify.app/assets-generator/)
|
|
19
16
|
link: [
|
|
20
|
-
{
|
|
21
|
-
href: `/site.webmanifest?v=${CACHE_VERSION}`,
|
|
22
|
-
rel: 'manifest',
|
|
23
|
-
},
|
|
24
17
|
{
|
|
25
18
|
href: `/favicon.ico?v=${CACHE_VERSION}`,
|
|
26
19
|
rel: 'icon',
|
|
@@ -41,6 +34,16 @@ export const useAppLayout = () => {
|
|
|
41
34
|
|
|
42
35
|
// i18n
|
|
43
36
|
useHeadSafe(useLocaleHead().value)
|
|
37
|
+
|
|
38
|
+
// pwa
|
|
39
|
+
useHead({
|
|
40
|
+
link: [
|
|
41
|
+
{
|
|
42
|
+
href: `/site.webmanifest?v=${CACHE_VERSION}`,
|
|
43
|
+
rel: 'manifest',
|
|
44
|
+
},
|
|
45
|
+
],
|
|
46
|
+
})
|
|
44
47
|
}
|
|
45
48
|
|
|
46
49
|
if (import.meta.client) {
|
|
@@ -89,7 +92,7 @@ export const useHeadDefault = (input: Parameters<typeof useSeoMeta>[0]) => {
|
|
|
89
92
|
})
|
|
90
93
|
defineOgImage(
|
|
91
94
|
(appConfig.vio.seo?.ogImage?.defaultComponent as keyof OgImageComponents) ||
|
|
92
|
-
'Nuxt.
|
|
95
|
+
'Nuxt.takumi',
|
|
93
96
|
{
|
|
94
97
|
description,
|
|
95
98
|
title: title.split(' · ')[0],
|
package/nuxt.config.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,23 +1,23 @@
|
|
|
1
1
|
{
|
|
2
2
|
"dependencies": {
|
|
3
|
-
"@dargmuesli/nuxt-cookie-control": "9.1.
|
|
4
|
-
"@eslint/compat": "2.0.
|
|
3
|
+
"@dargmuesli/nuxt-cookie-control": "9.1.19",
|
|
4
|
+
"@eslint/compat": "2.0.3",
|
|
5
5
|
"@heroicons/vue": "2.2.0",
|
|
6
6
|
"@http-util/status-i18n": "0.9.0",
|
|
7
|
-
"@intlify/eslint-plugin-vue-i18n": "4.
|
|
8
|
-
"@nuxt/devtools": "3.2.
|
|
7
|
+
"@intlify/eslint-plugin-vue-i18n": "4.3.0",
|
|
8
|
+
"@nuxt/devtools": "3.2.4",
|
|
9
9
|
"@nuxt/eslint": "1.15.2",
|
|
10
10
|
"@nuxt/image": "2.0.0",
|
|
11
11
|
"@nuxtjs/color-mode": "4.0.0",
|
|
12
12
|
"@nuxtjs/html-validator": "2.1.0",
|
|
13
|
-
"@nuxtjs/i18n": "10.2.
|
|
13
|
+
"@nuxtjs/i18n": "10.2.4",
|
|
14
14
|
"@nuxtjs/seo": "3.4.0",
|
|
15
|
-
"@nuxtjs/turnstile": "1.1.
|
|
15
|
+
"@nuxtjs/turnstile": "1.1.2",
|
|
16
16
|
"@pinia/nuxt": "0.11.3",
|
|
17
|
-
"@resvg/resvg-js": "2.6.2",
|
|
18
17
|
"@tailwindcss/forms": "0.5.11",
|
|
19
18
|
"@tailwindcss/typography": "0.5.19",
|
|
20
|
-
"@tailwindcss/vite": "4.2.
|
|
19
|
+
"@tailwindcss/vite": "4.2.2",
|
|
20
|
+
"@takumi-rs/core": "0.70.4",
|
|
21
21
|
"@types/lodash-es": "4.17.12",
|
|
22
22
|
"@types/nodemailer": "7.0.11",
|
|
23
23
|
"@urql/core": "6.0.1",
|
|
@@ -27,48 +27,47 @@
|
|
|
27
27
|
"@vueuse/core": "14.2.1",
|
|
28
28
|
"class-variance-authority": "0.7.1",
|
|
29
29
|
"clsx": "2.1.1",
|
|
30
|
-
"eslint": "10.0
|
|
30
|
+
"eslint": "10.1.0",
|
|
31
31
|
"eslint-config-prettier": "10.1.8",
|
|
32
|
-
"eslint-plugin-compat": "7.0.
|
|
32
|
+
"eslint-plugin-compat": "7.0.1",
|
|
33
33
|
"eslint-plugin-prettier": "5.5.5",
|
|
34
|
-
"eslint-plugin-yml": "3.3.
|
|
35
|
-
"globals": "17.
|
|
34
|
+
"eslint-plugin-yml": "3.3.1",
|
|
35
|
+
"globals": "17.4.0",
|
|
36
36
|
"jiti": "2.6.1",
|
|
37
|
-
"jose": "6.
|
|
38
|
-
"lucide-vue-next": "0.
|
|
39
|
-
"nodemailer": "8.0.
|
|
37
|
+
"jose": "6.2.2",
|
|
38
|
+
"lucide-vue-next": "0.577.0",
|
|
39
|
+
"nodemailer": "8.0.4",
|
|
40
40
|
"nuxt-gtag": "4.1.0",
|
|
41
41
|
"nuxt-security": "2.5.1",
|
|
42
|
-
"reka-ui": "2.
|
|
43
|
-
"satori": "0.19.1",
|
|
42
|
+
"reka-ui": "2.9.2",
|
|
44
43
|
"shadcn-nuxt": "2.4.3",
|
|
45
44
|
"tailwind-merge": "3.5.0",
|
|
46
45
|
"tw-animate-css": "1.4.0",
|
|
47
46
|
"vue-sonner": "2.0.9",
|
|
48
|
-
"vue-tsc": "3.2.
|
|
47
|
+
"vue-tsc": "3.2.6"
|
|
49
48
|
},
|
|
50
49
|
"devDependencies": {
|
|
51
|
-
"@types/node": "24.
|
|
50
|
+
"@types/node": "24.12.0",
|
|
52
51
|
"@urql/devtools": "2.0.3",
|
|
53
52
|
"@urql/exchange-graphcache": "9.0.0",
|
|
54
53
|
"@vueuse/core": "14.2.1",
|
|
55
54
|
"consola": "3.4.2",
|
|
56
55
|
"defu": "6.1.4",
|
|
57
|
-
"h3": "1.15.
|
|
56
|
+
"h3": "1.15.10",
|
|
58
57
|
"lodash-es": "4.17.23",
|
|
59
|
-
"nuxt": "4.
|
|
58
|
+
"nuxt": "4.4.2",
|
|
60
59
|
"pinia": "3.0.4",
|
|
61
60
|
"prettier": "3.8.1",
|
|
62
61
|
"prettier-plugin-tailwindcss": "0.7.2",
|
|
63
|
-
"serve": "14.2.
|
|
62
|
+
"serve": "14.2.6",
|
|
64
63
|
"sharp": "0.34.5",
|
|
65
|
-
"stylelint": "17.
|
|
64
|
+
"stylelint": "17.6.0",
|
|
66
65
|
"stylelint-config-recommended-vue": "1.6.1",
|
|
67
66
|
"stylelint-config-standard": "40.0.0",
|
|
68
67
|
"stylelint-no-unsupported-browser-features": "8.1.1",
|
|
69
|
-
"tailwindcss": "4.2.
|
|
70
|
-
"vue": "3.5.
|
|
71
|
-
"vue-router": "5.0.
|
|
68
|
+
"tailwindcss": "4.2.2",
|
|
69
|
+
"vue": "3.5.31",
|
|
70
|
+
"vue-router": "5.0.4"
|
|
72
71
|
},
|
|
73
72
|
"engines": {
|
|
74
73
|
"node": "24"
|
|
@@ -119,5 +118,5 @@
|
|
|
119
118
|
"start:static": "node node/server/static.mjs"
|
|
120
119
|
},
|
|
121
120
|
"type": "module",
|
|
122
|
-
"version": "21.0.0-beta.
|
|
121
|
+
"version": "21.0.0-beta.12"
|
|
123
122
|
}
|