From 63e201492c68a04e7060c0d2c4479bdbc7f5c8ca Mon Sep 17 00:00:00 2001 From: Jeff Sagal Date: Tue, 19 Jul 2022 00:14:24 -0700 Subject: [PATCH] docs: rename `Head` to actual `HeadConfig` type in frontmatter config (#1013) --- docs/config/frontmatter-configs.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/config/frontmatter-configs.md b/docs/config/frontmatter-configs.md index 14c18d7f..59fc9d1d 100644 --- a/docs/config/frontmatter-configs.md +++ b/docs/config/frontmatter-configs.md @@ -54,7 +54,7 @@ description: VitePress ### head -- Type: `Head[]` +- Type: `HeadConfig[]` Specify extra head tags to be injected: @@ -71,7 +71,7 @@ head: ``` ```ts -type Head = +type HeadConfig = | [string, Record] | [string, Record, string] ```