Skip to content

Commit 7257220

Browse files
authored
Fix for OG meta tags scheme (#2943)
1 parent 05b2d9e commit 7257220

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

website/docusaurus.config.ts

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -95,36 +95,36 @@ const config: Config = {
9595
content:
9696
"victory, documentation, react, charts, charting, data, viz, d3",
9797
},
98-
{ name: "og:type", content: "website" },
98+
{ property: "og:type", content: "website" },
9999
{
100-
name: "og:url",
100+
property: "og:url",
101101
content: "https://commerce.nearform.com/open-source/victory/",
102102
},
103-
{ name: "og:title", content: `${title} - React Charting Components` },
103+
{ property: "og:title", content: `${title} - React Charting Components` },
104104
{
105-
name: "og:description",
105+
property: "og:description",
106106
content: tagline,
107107
},
108108
{
109-
name: "og:image",
109+
property: "og:image",
110110
content:
111111
"https://commerce.nearform.com/open-source/victory/open-graph.png",
112112
},
113-
{ name: "twitter:card", content: "summary_large_image" },
113+
{ property: "twitter:card", content: "summary_large_image" },
114114
{
115-
name: "twitter:url",
115+
property: "twitter:url",
116116
content: "https://commerce.nearform.com/open-source/victory/",
117117
},
118118
{
119-
name: "twitter:title",
119+
property: "twitter:title",
120120
content: `${title} - React Charting Components`,
121121
},
122122
{
123-
name: "twitter:description",
123+
property: "twitter:description",
124124
content: tagline,
125125
},
126126
{
127-
name: "twitter:image",
127+
property: "twitter:image",
128128
content:
129129
"https://commerce.nearform.com/open-source/victory/open-graph.png",
130130
},

0 commit comments

Comments
 (0)