From 191a149b463ce4f9a6990b466984bcaf28b4269b Mon Sep 17 00:00:00 2001 From: samaradel Date: Thu, 19 Aug 2021 15:08:53 +0200 Subject: [PATCH] Fix meta --- src/templates/BlogPost.vue | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/templates/BlogPost.vue b/src/templates/BlogPost.vue index 532ade510..885e84806 100644 --- a/src/templates/BlogPost.vue +++ b/src/templates/BlogPost.vue @@ -265,7 +265,8 @@ export default { { key: "og:image", property: "og:image", - content: this.img(this.$page.blog.image), + content: + `${window.location.origin}` + this.img(this.$page.blog.image), }, { name: "twitter:description", @@ -275,7 +276,8 @@ export default { { name: "twitter:image", property: "twitter:image", - content: this.img(this.$page.blog.image), + content: + `${window.location.origin}` + this.img(this.$page.blog.image), }, { name: "twitter:title", @@ -285,7 +287,7 @@ export default { { name: "twitter:card", property: "twitter:card", - content: "summary", + content: "summary_large_image", }, ], };