fix(v2): fix incorrect keywords meta tag (#1863)

This commit is contained in:
Yangshun Tay 2019-10-20 20:51:47 -07:00 committed by Endi
parent 954f1a6827
commit ee936f62b5
2 changed files with 4 additions and 4 deletions

View file

@ -48,7 +48,7 @@ function Layout(props) {
<meta property="og:description" content={description} />
)}
{keywords && keywords.length && (
<meta property="keywords" content={keywords.join(',')} />
<meta name="keywords" content={keywords.join(',')} />
)}
{metaImage && (
<meta