@unhead/vue 1.3.1 → 1.3.2

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/dist/index.cjs CHANGED
@@ -65,7 +65,7 @@ function useSeoMeta(input, options) {
65
65
 
66
66
  function useServerHead(input, options = {}) {
67
67
  const head = useHead.injectHead();
68
- return head.push(input, options);
68
+ return head.push(input, { ...options, mode: "server" });
69
69
  }
70
70
 
71
71
  function useServerHeadSafe(input, options = {}) {
package/dist/index.mjs CHANGED
@@ -64,7 +64,7 @@ function useSeoMeta(input, options) {
64
64
 
65
65
  function useServerHead(input, options = {}) {
66
66
  const head = injectHead();
67
- return head.push(input, options);
67
+ return head.push(input, { ...options, mode: "server" });
68
68
  }
69
69
 
70
70
  function useServerHeadSafe(input, options = {}) {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@unhead/vue",
3
3
  "type": "module",
4
- "version": "1.3.1",
4
+ "version": "1.3.2",
5
5
  "author": "Harlan Wilton <harlan@harlanzw.com>",
6
6
  "license": "MIT",
7
7
  "funding": "https://github.com/sponsors/harlan-zw",
@@ -38,9 +38,9 @@
38
38
  },
39
39
  "dependencies": {
40
40
  "hookable": "^5.5.3",
41
- "@unhead/schema": "1.3.1",
42
- "@unhead/shared": "1.3.1",
43
- "unhead": "1.3.1"
41
+ "@unhead/schema": "1.3.2",
42
+ "@unhead/shared": "1.3.2",
43
+ "unhead": "1.3.2"
44
44
  },
45
45
  "devDependencies": {
46
46
  "vue": "^3.3.4"