Skip to content

Commit

Permalink
fix: og系の要素をpropertyで指定するように修正 (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
sor4chi authored Apr 21, 2024
1 parent 15bdfde commit 1263f0e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions webapp/app/routes/_index/route.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ export const meta: MetaFunction = () => {
{ title: TITLE },
{ name: 'robots', content: 'noindex, nofollow' },
{ name: 'description', content: DESCRIPTION },
{ name: 'og:title', content: TITLE },
{ name: 'og:description', content: DESCRIPTION },
{ name: 'og:image', content: IMAGE },
{ property: 'og:title', content: TITLE },
{ property: 'og:description', content: DESCRIPTION },
{ property: 'og:image', content: IMAGE },
]
}

Expand Down

0 comments on commit 1263f0e

Please sign in to comment.