mirror of
https://github.com/facebook/docusaurus.git
synced 2025-06-12 07:42:34 +02:00
fix(v2): keywords frontmatter should work properly (#1840)
* fix(v2): keywords frontmatter should work properly * nits * nits again
This commit is contained in:
parent
bdb129252c
commit
c630e1aab9
6 changed files with 19 additions and 6 deletions
|
@ -48,7 +48,7 @@ function Layout(props) {
|
|||
<meta property="og:description" content={description} />
|
||||
)}
|
||||
{keywords && keywords.length && (
|
||||
<meta property="keywords" content={keywords} />
|
||||
<meta property="keywords" content={keywords.join(',')} />
|
||||
)}
|
||||
{metaImage && (
|
||||
<meta
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue