From 16a09cd95952f82090aa5db8e4ae6317d3ac009d Mon Sep 17 00:00:00 2001 From: Daniel Roe Date: Mon, 10 Jun 2024 22:20:54 +0100 Subject: [PATCH] fix: use correct meta attribute for twitter info --- nuxt.config.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nuxt.config.ts b/nuxt.config.ts index 8d77a0f1..3ab82a85 100644 --- a/nuxt.config.ts +++ b/nuxt.config.ts @@ -270,8 +270,8 @@ export default defineNuxtConfig({ { property: 'og:image:width', content: '3800' }, { property: 'og:image:height', content: '1900' }, { property: 'og:site_name', content: 'Elk' }, - { property: 'twitter:site', content: '@elk_zone' }, - { property: 'twitter:card', content: 'summary_large_image' }, + { name: 'twitter:site', content: '@elk_zone' }, + { name: 'twitter:card', content: 'summary_large_image' }, ], }, },