@unhead/vue 0.4.5 → 0.4.6

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
@@ -249,7 +249,6 @@ function injectHead() {
249
249
  }
250
250
  function createHead(options = {}) {
251
251
  const plugins = [
252
- unhead.HydrateStateFromSSRPlugin(),
253
252
  VueReactiveUseHeadPlugin(),
254
253
  ...options?.plugins || []
255
254
  ];
package/dist/index.mjs CHANGED
@@ -1,6 +1,6 @@
1
1
  import { resolveUnref } from '@vueuse/shared';
2
2
  import { unref, version, getCurrentInstance, ref, watchEffect, watch, onBeforeUnmount, inject, nextTick } from 'vue';
3
- import { getActiveHead, HydrateStateFromSSRPlugin, createHead as createHead$1, defineHeadPlugin } from 'unhead';
3
+ import { getActiveHead, createHead as createHead$1, defineHeadPlugin } from 'unhead';
4
4
  export * from '@unhead/dom';
5
5
 
6
6
  function resolveUnrefHeadInput(ref) {
@@ -247,7 +247,6 @@ function injectHead() {
247
247
  }
248
248
  function createHead(options = {}) {
249
249
  const plugins = [
250
- HydrateStateFromSSRPlugin(),
251
250
  VueReactiveUseHeadPlugin(),
252
251
  ...options?.plugins || []
253
252
  ];
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@unhead/vue",
3
3
  "type": "module",
4
- "version": "0.4.5",
4
+ "version": "0.4.6",
5
5
  "packageManager": "pnpm@7.14.0",
6
6
  "author": "Harlan Wilton <harlan@harlanzw.com>",
7
7
  "license": "MIT",
@@ -33,10 +33,10 @@
33
33
  "vue": ">=2.7 || >=3"
34
34
  },
35
35
  "dependencies": {
36
- "@unhead/dom": "0.4.5",
37
- "@unhead/schema": "0.4.5",
36
+ "@unhead/dom": "0.4.6",
37
+ "@unhead/schema": "0.4.6",
38
38
  "@vueuse/shared": "latest",
39
- "unhead": "0.4.5"
39
+ "unhead": "0.4.6"
40
40
  },
41
41
  "devDependencies": {
42
42
  "vue": "^3.2.42"