From 87fb72ba5570d1ba033a9b4d0a43847395d1335d Mon Sep 17 00:00:00 2001 From: Yonatan Paripsky Date: Fri, 28 Jul 2023 19:52:43 +0300 Subject: [PATCH] fix: fix image urls in meta tags The image meta tags urls in the rome tools website are broken and link to https://rome.toolsimg/social-logo.png instead of https://rome.tools/img/social-logo.png ``` ``` The site url in the astro.config.ts is set to https://rome.tools, so a slash needs to be added for it to work properly ``` site: "https://rome.tools", ``` --- website/src/layouts/BaseLayout.astro | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/src/layouts/BaseLayout.astro b/website/src/layouts/BaseLayout.astro index 9aa8cea635f..b636f39ab61 100644 --- a/website/src/layouts/BaseLayout.astro +++ b/website/src/layouts/BaseLayout.astro @@ -50,8 +50,8 @@ const { default: favicon } = await import("/public/img/favicon.svg?raw"); - - + +