From fc4ffd5288030bd97348880c5940807b0ebd76c7 Mon Sep 17 00:00:00 2001 From: Pooya Parsa Date: Tue, 9 Aug 2022 12:03:27 +0200 Subject: [PATCH] remove edge banners --- docs/content/2.guide/2.features/4.head-management.md | 3 --- docs/content/2.guide/2.features/7.error-handling.md | 8 -------- .../content/2.guide/3.directory-structure/4.components.md | 4 ---- docs/content/3.api/3.utils/create-error.md | 4 ---- 4 files changed, 19 deletions(-) diff --git a/docs/content/2.guide/2.features/4.head-management.md b/docs/content/2.guide/2.features/4.head-management.md index 7ffa13bd9a8..69317ed70bf 100644 --- a/docs/content/2.guide/2.features/4.head-management.md +++ b/docs/content/2.guide/2.features/4.head-management.md @@ -51,9 +51,6 @@ Now, if you set the title to `My Page` with `useHead` on another page of your si ## Body Meta Tags -::StabilityEdge{title="Body Meta Tags"} -:: - You can use the `body: true` option on the `link` and `script` meta tags to append them to the end of the `` tag. For example: diff --git a/docs/content/2.guide/2.features/7.error-handling.md b/docs/content/2.guide/2.features/7.error-handling.md index 144b663d632..c514237ffde 100644 --- a/docs/content/2.guide/2.features/7.error-handling.md +++ b/docs/content/2.guide/2.features/7.error-handling.md @@ -93,10 +93,6 @@ If you throw an error created with `createError`: ### Example -::StabilityEdge{title="Auto import of createError"} -In the current version, add `import { createError } from 'h3'` in order to use `createError`. -:: - ```vue [pages/movies/[slug].vue]