From 6abe472d5bb86118ba00db1b46f6f748eaae145f Mon Sep 17 00:00:00 2001 From: Hippo Date: Tue, 31 Mar 2020 19:00:04 +0530 Subject: [PATCH] Prepend feature image to RSS post --- gridsome.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gridsome.config.js b/gridsome.config.js index 333a1bc..67c6619 100644 --- a/gridsome.config.js +++ b/gridsome.config.js @@ -72,7 +72,7 @@ module.exports = { image: node.feature_image, title: node.title, date: new Date(node.published_at || null), - content: node.html, + content: '' + node.html, }), }, },