From b84924ccf80be6de6cf60f41f8774efa22e12da7 Mon Sep 17 00:00:00 2001 From: "autofix-ci[bot]" <114827586+autofix-ci[bot]@users.noreply.github.com> Date: Fri, 14 Feb 2025 07:23:11 +0000 Subject: [PATCH] [autofix.ci] apply automated fixes --- docs/1.getting-started/12.upgrade.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/1.getting-started/12.upgrade.md b/docs/1.getting-started/12.upgrade.md index 0810276d96..10d1b23b47 100644 --- a/docs/1.getting-started/12.upgrade.md +++ b/docs/1.getting-started/12.upgrade.md @@ -254,9 +254,9 @@ export default defineNuxtConfig({ [Unhead](https://unhead.unjs.io/), used to generate `` tags, has been updated to version 2. While mostly compatible it includes several breaking changes for lower-level APIs. -- Removed props: `vmid`, `hid`, `children`, `body`. -- Promise input no longer supported. -- Tags are now sorted using Capo.js by default. +* Removed props: `vmid`, `hid`, `children`, `body`. +* Promise input no longer supported. +* Tags are now sorted using Capo.js by default. ##### Migration Steps @@ -264,7 +264,7 @@ The above changes should have minimal impact on your app. If you have issues you should verify: -- You're not using any of the removed props. +* You're not using any of the removed props. ```diff useHead({ @@ -277,7 +277,7 @@ useHead({ }) ``` -- If you're using [Template Params](https://unhead.unjs.io/usage/guides/template-params) or [Alias Tag Sorting](https://unhead.unjs.io/usage/guides/sorting#sort-with-before-and-after), you will need to explicitly opt in to these features now. +* If you're using [Template Params](https://unhead.unjs.io/usage/guides/template-params) or [Alias Tag Sorting](https://unhead.unjs.io/usage/guides/sorting#sort-with-before-and-after), you will need to explicitly opt in to these features now. ```ts import { TemplateParamsPlugin, AliasSortingPlugin } from '@unhead/vue/plugins'