Skip to content

Commit ed13071

Browse files
committed
Added og:image:height and og:image:width to nuxt.config.js
1 parent 61b2505 commit ed13071

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

nuxt.config.js

+4-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export default {
1717
// Twitter Card Meta
1818
// Doc: https://developer.twitter.com/en/docs/tweets/optimize-with-cards/guides/getting-started.html
1919
{ property: 'twitter:card', content: 'summary' },
20-
{ property: 'twitter:site', value: '@codotype' },
20+
{ property: 'twitter:site', value: '@aeksco' },
2121
{ property: 'twitter:creator', value: '@aeksco' },
2222

2323
// OpenGraph Meta
@@ -26,7 +26,9 @@ export default {
2626
{ property: 'og:type', content: 'website' },
2727
{ property: 'og:title', content: 'Nuxt Netlify Lambda Starter' },
2828
{ property: 'og:description', content: 'SEO-friendly website starter backed by Netlify lambda functions' },
29-
{ property: 'og:image', content: 'https://nuxtjs.org/meta_640.png' }
29+
{ property: 'og:image', content: 'https://nuxtjs.org/meta_640.png' },
30+
{ property: 'og:image:height', content: 640 },
31+
{ property: 'og:image:width', content: 640 },
3032
],
3133
link: [{ rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' }]
3234
},

0 commit comments

Comments
 (0)