From 4ce5b0b90419fee125029141c5d77ec32de69ebd Mon Sep 17 00:00:00 2001 From: Sam Carlton Date: Sat, 28 Nov 2020 17:00:17 -0600 Subject: [PATCH 1/2] 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` From a147ab15c33149f8b480928636333be4b058ee8e Mon Sep 17 00:00:00 2001 From: Sam Carlton Date: Sat, 28 Nov 2020 17:00:27 -0600 Subject: [PATCH 2/2] Update package description --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index f5b2b11..2a4ff7f 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "doesitarm", "version": "1.0.0", - "description": "Apps that support Apple Silicon", + "description": "Find out the latest app support for Apple Silicon and the Apple M1 Processor", "author": "Sam Carlton", "private": true, "scripts": {