mirror of
https://github.com/facebook/docusaurus.git
synced 2025-06-10 14:52:29 +02:00
fix(v2): fix incorrect keywords meta tag (#1863)
This commit is contained in:
parent
954f1a6827
commit
ee936f62b5
2 changed files with 4 additions and 4 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue