From 4ce5b0b90419fee125029141c5d77ec32de69ebd Mon Sep 17 00:00:00 2001 From: Sam Carlton Date: Sat, 28 Nov 2020 17:00:17 -0600 Subject: [PATCH] Add missing twitter card meta --- nuxt.config.js | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/nuxt.config.js b/nuxt.config.js index 5f89c80..a51114b 100644 --- a/nuxt.config.js +++ b/nuxt.config.js @@ -161,6 +161,24 @@ export default { 'property': 'og:image:alt', 'content': 'Does It ARM Logo' }, + + // Twitter Card + { + 'property': 'twitter:card', + 'content': 'summary' + }, + { + 'property': 'twitter:title', + 'content': 'Does It ARM' + }, + { + 'property': 'twitter:description', + 'content': pkg.description + }, + { + 'property': 'twitter:url', + 'content': `${process.env.URL}` + }, { 'property': 'twitter:image', 'content': `${process.env.URL}/images/og-image.png`