From 322b0e19db9c9eba0ef410a67b265020efd923de Mon Sep 17 00:00:00 2001 From: Spencer Flagg Date: Wed, 26 Oct 2022 16:20:58 +0200 Subject: [PATCH] made seo image path absolute Changed image path from relative to absolute - I've included the thumbnail in the site files. `seo.json` is where the site's metatag info is stored (for detailed display in search results, social media, messengers, etc). The image path was incorrect - it needs to be absolute. An additional note - you may want to adjust the title and the description for better SEO. https://metatags.io/ is a good quick way to test how the metatag info will display per platform. Check out https://github.com/artstorm/eleventy-plugin-seo for more eleventy-seo-plugin settings. --- src/_data/seo.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/_data/seo.json b/src/_data/seo.json index 53c8d06..00c97b2 100644 --- a/src/_data/seo.json +++ b/src/_data/seo.json @@ -4,5 +4,5 @@ "url": "https://start9.com", "author": "Start9 Labs", "twitter": "start9labs", - "image": "/assets/images/thumbnail.jpg" - } \ No newline at end of file + "image": "https://start9.com/assets/images/thumbnail.jpg" + }