about summary refs log tree commit diff
path: root/nuxt.config.js
diff options
context:
space:
mode:
Diffstat (limited to 'nuxt.config.js')
-rw-r--r--nuxt.config.js14
1 files changed, 12 insertions, 2 deletions
diff --git a/nuxt.config.js b/nuxt.config.js
index 7c63f0c..38bc72a 100644
--- a/nuxt.config.js
+++ b/nuxt.config.js
@@ -22,7 +22,7 @@ export default {
       { name: 'robots', content: 'all' },
       {
         hid: 'description',
-        name: 'description',
+        property: 'description',
         content: process.env.npm_package_description || '',
       },
       {
@@ -31,9 +31,19 @@ export default {
       },
       {
         hid: 'og:image',
-        name: 'og:image',
+        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' },