From 1263f0e511abbb3b0d5644880ac2a7c12c4665a6 Mon Sep 17 00:00:00 2001 From: Sor4chi <80559385+sor4chi@users.noreply.github.com> Date: Mon, 22 Apr 2024 00:14:22 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20og=E7=B3=BB=E3=81=AE=E8=A6=81=E7=B4=A0?= =?UTF-8?q?=E3=82=92property=E3=81=A7=E6=8C=87=E5=AE=9A=E3=81=99=E3=82=8B?= =?UTF-8?q?=E3=82=88=E3=81=86=E3=81=AB=E4=BF=AE=E6=AD=A3=20(#10)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- webapp/app/routes/_index/route.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/webapp/app/routes/_index/route.tsx b/webapp/app/routes/_index/route.tsx index a578d74..1cba906 100644 --- a/webapp/app/routes/_index/route.tsx +++ b/webapp/app/routes/_index/route.tsx @@ -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 }, ] }