diff --git a/nuxt.config.js b/nuxt.config.js index 3d7eb0f..5f89c80 100644 --- a/nuxt.config.js +++ b/nuxt.config.js @@ -144,6 +144,26 @@ export default { hid: 'description', name: 'description', content: pkg.description + }, + { + 'property': 'og:image', + 'content': `${process.env.URL}/images/og-image.png` + }, + { + 'property': 'og:image:width', + 'content': '1200' + }, + { + 'property': 'og:image:height', + 'content': '627' + }, + { + 'property': 'og:image:alt', + 'content': 'Does It ARM Logo' + }, + { + 'property': 'twitter:image', + 'content': `${process.env.URL}/images/og-image.png` } ], link: [{ rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' }] diff --git a/static/images/og-image.png b/static/images/og-image.png new file mode 100644 index 0000000..5152895 Binary files /dev/null and b/static/images/og-image.png differ