From d228b11c04499d553bf11e7893072b9af737d15c Mon Sep 17 00:00:00 2001 From: Josh Deltener Date: Wed, 26 Oct 2022 04:18:22 -0500 Subject: [PATCH] docs: updated bridge migration guide (#8471) Co-authored-by: Daniel Roe --- docs/content/6.bridge/1.overview.md | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/docs/content/6.bridge/1.overview.md b/docs/content/6.bridge/1.overview.md index f1625c7b062..60b437645bb 100644 --- a/docs/content/6.bridge/1.overview.md +++ b/docs/content/6.bridge/1.overview.md @@ -252,8 +252,13 @@ export default defineNuxtConfig({ }) ``` -This `useHead` composable uses `@vueuse/head` under the hood (rather than `vue-meta`) to manipulate your ``. -Accordingly, we recommend not to use both the native Nuxt 2 `head()` properties as well as `useHead`, as they may conflict. +::alert +This `useHead` composable uses `@vueuse/head` under the hood (rather than `vue-meta`) to manipulate your ``. You need to add `@vueuse/head` to your package.json file for it to work properly. +:: + +::alert{type=warning} +We recommend not using the native Nuxt 2 `head()` properties in addition to `useHead`, as they may conflict. +:: For more information on how to use this composable, see [the docs](/getting-started/seo-meta).