nuxt-nightly 4.1.3-29312995.d3ce79f3 → 4.1.3-29313364.98ecc620
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.
|
@@ -22,26 +22,26 @@ export function injectHead(nuxtApp) {
|
|
|
22
22
|
});
|
|
23
23
|
}
|
|
24
24
|
export function useHead(input, options = {}) {
|
|
25
|
-
const head = injectHead(options.nuxt);
|
|
25
|
+
const head = options.head || injectHead(options.nuxt);
|
|
26
26
|
return headCore(input, { head, ...options });
|
|
27
27
|
}
|
|
28
28
|
export function useHeadSafe(input, options = {}) {
|
|
29
|
-
const head = injectHead(options.nuxt);
|
|
29
|
+
const head = options.head || injectHead(options.nuxt);
|
|
30
30
|
return headSafe(input, { head, ...options });
|
|
31
31
|
}
|
|
32
32
|
export function useSeoMeta(input, options = {}) {
|
|
33
|
-
const head = injectHead(options.nuxt);
|
|
33
|
+
const head = options.head || injectHead(options.nuxt);
|
|
34
34
|
return seoMeta(input, { head, ...options });
|
|
35
35
|
}
|
|
36
36
|
export function useServerHead(input, options = {}) {
|
|
37
|
-
const head = injectHead(options.nuxt);
|
|
37
|
+
const head = options.head || injectHead(options.nuxt);
|
|
38
38
|
return serverHead(input, { head, ...options });
|
|
39
39
|
}
|
|
40
40
|
export function useServerHeadSafe(input, options = {}) {
|
|
41
|
-
const head = injectHead(options.nuxt);
|
|
41
|
+
const head = options.head || injectHead(options.nuxt);
|
|
42
42
|
return serverHeadSafe(input, { head, ...options });
|
|
43
43
|
}
|
|
44
44
|
export function useServerSeoMeta(input, options = {}) {
|
|
45
|
-
const head = injectHead(options.nuxt);
|
|
45
|
+
const head = options.head || injectHead(options.nuxt);
|
|
46
46
|
return serverSeoMeta(input, { head, ...options });
|
|
47
47
|
}
|
package/dist/index.mjs
CHANGED
|
@@ -3821,7 +3821,7 @@ function addDeclarationTemplates(ctx, options) {
|
|
|
3821
3821
|
});
|
|
3822
3822
|
}
|
|
3823
3823
|
|
|
3824
|
-
const version = "4.1.3-
|
|
3824
|
+
const version = "4.1.3-29313364.98ecc620";
|
|
3825
3825
|
|
|
3826
3826
|
const createImportProtectionPatterns = (nuxt, options) => {
|
|
3827
3827
|
const patterns = [];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nuxt-nightly",
|
|
3
|
-
"version": "4.1.3-
|
|
3
|
+
"version": "4.1.3-29313364.98ecc620",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "git+https://github.com/nuxt/nuxt.git",
|
|
@@ -67,10 +67,10 @@
|
|
|
67
67
|
"@nuxt/cli": "npm:@nuxt/cli-nightly@latest",
|
|
68
68
|
"@nuxt/devalue": "^2.0.2",
|
|
69
69
|
"@nuxt/devtools": "^2.6.3",
|
|
70
|
-
"@nuxt/kit": "npm:@nuxt/kit-nightly@4.1.3-
|
|
71
|
-
"@nuxt/schema": "npm:@nuxt/schema-nightly@4.1.3-
|
|
70
|
+
"@nuxt/kit": "npm:@nuxt/kit-nightly@4.1.3-29313364.98ecc620",
|
|
71
|
+
"@nuxt/schema": "npm:@nuxt/schema-nightly@4.1.3-29313364.98ecc620",
|
|
72
72
|
"@nuxt/telemetry": "^2.6.6",
|
|
73
|
-
"@nuxt/vite-builder": "npm:@nuxt/vite-builder-nightly@4.1.3-
|
|
73
|
+
"@nuxt/vite-builder": "npm:@nuxt/vite-builder-nightly@4.1.3-29313364.98ecc620",
|
|
74
74
|
"@unhead/vue": "^2.0.14",
|
|
75
75
|
"@vue/shared": "^3.5.21",
|
|
76
76
|
"c12": "^3.3.0",
|