diff options
-rw-r--r-- | nuxt.config.js | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/nuxt.config.js b/nuxt.config.js index 80e2ea3..27c210e 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_tree.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' }, |