From 912f7467496f92f75815c232c895448e583de618 Mon Sep 17 00:00:00 2001 From: Lee Robinson Date: Mon, 20 Apr 2020 04:15:53 -0500 Subject: [PATCH] Update next/head docs to clarify duplicate tags. (#12033) --- docs/api-reference/next/head.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/api-reference/next/head.md b/docs/api-reference/next/head.md index 961f18e2b5e00..eacf60465c95c 100644 --- a/docs/api-reference/next/head.md +++ b/docs/api-reference/next/head.md @@ -43,16 +43,16 @@ function IndexPage() { My page title

Hello world!

@@ -63,7 +63,7 @@ function IndexPage() { export default IndexPage ``` -In this case only the second `` is rendered. +In this case only the second `` is rendered. `meta` tags with duplicate `name` attributes are automatically handled. > The contents of `head` get cleared upon unmounting the component, so make sure each page completely defines what it needs in `head`, without making assumptions about what other pages added.