diff options
author | Patryk Niedźwiedziński <pniedzwiedzinski19@gmail.com> | 2020-08-04 22:39:49 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-04 22:39:49 +0200 |
commit | 8f1a2fa503962ed61e192eb4c529d1b1a9136834 (patch) | |
tree | d2f7421b6a3fd834485fabc06a889cc0644456e7 | |
parent | 2fdd492558b0d02b2f7e17263f4e88df32352d78 (diff) | |
download | puszcza-8f1a2fa503962ed61e192eb4c529d1b1a9136834.tar.gz puszcza-8f1a2fa503962ed61e192eb4c529d1b1a9136834.zip |
Add og image size
-rw-r--r-- | nuxt.config.js | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/nuxt.config.js b/nuxt.config.js index 012a8ec..38bc72a 100644 --- a/nuxt.config.js +++ b/nuxt.config.js @@ -34,6 +34,16 @@ export default { property: 'og:image', content: `${BASE_URL}/assets/og/default.jpg`, }, + { + hid: 'og:image:width', + property: 'og:image:width', + content: `1200`, + }, + { + hid: 'og:image:height', + property: 'og:image:height', + content: `916`, + }, ], link: [ { rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' }, |