Skip to content

Commit 52811a2

Browse files
authored
conf: use full domain name for the og images (graphql#1517)
1 parent c19787b commit 52811a2

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src/components/Conf/Seo/index.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ export default function SeoConf(props: {
3232
<meta property="og:title" content={title} />
3333
<meta property="og:description" content={description} />
3434
<meta property="og:image" content={image} />
35-
<meta property="twitter:image" content={image} />
3635
<meta
3736
property="og:image:alt"
3837
content="GraphQLConf 2023 hosted by the GraphQL Foundation. September 19-21, 2023. San Francisco Bay Area, California"

src/templates/event.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ export function Head({
208208
title={`${event.name} | GraphQLConf 2023`}
209209
description={event.description}
210210
ogImage={{
211-
url: `/img/__og-image/${event.id}.png`,
211+
url: `https://graphql.org/img/__og-image/${event.id}.png`,
212212
width: 1200,
213213
height: 630,
214214
}}

0 commit comments

Comments
 (0)