fix(v2): remove duplicate meta tags (#1966)

This commit is contained in:
Alexey Pyltsyn 2019-11-12 07:46:38 +03:00 committed by Yangshun Tay
parent b027db1b34
commit ed099da3ba

View file

@ -39,9 +39,7 @@ function Layout(props) {
return (
<>
<Head>
<meta charSet="utf-8" />
<meta httpEquiv="x-ua-compatible" content="ie=edge" />
<meta name="viewport" content="width=device-width" />
{metaTitle && <title>{metaTitle}</title>}
{metaTitle && <meta property="og:title" content={metaTitle} />}
{favicon && <link rel="shortcut icon" href={faviconUrl} />}