From 77f9cc2e2d986a4c29a4797ce899ddccfcb4502b Mon Sep 17 00:00:00 2001 From: Nikita Revenco <154856872+NikitaRevenco@users.noreply.github.com> Date: Wed, 11 Dec 2024 05:29:25 +0000 Subject: [PATCH] fix: correct paths for static assets --- astro.config.mjs | 14 ++++++++++++++ public/{helix-golf => }/favicon.svg | 0 public/{helix-golf => }/og.jpg | Bin 3 files changed, 14 insertions(+) rename public/{helix-golf => }/favicon.svg (100%) rename public/{helix-golf => }/og.jpg (100%) diff --git a/astro.config.mjs b/astro.config.mjs index 3363df4..cc5ef4f 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -38,6 +38,20 @@ export default defineConfig({ content: "/helix-golf/og.jpg", }, }, + { + tag: "meta", + attrs: { + name: "description", + content: "Helix Editor Refactor Examples", + }, + }, + { + tag: "meta", + attrs: { + property: "og:description", + content: "Helix Editor Refactor Examples", + }, + }, ], title: "Helix Golf ⛳", social: { diff --git a/public/helix-golf/favicon.svg b/public/favicon.svg similarity index 100% rename from public/helix-golf/favicon.svg rename to public/favicon.svg diff --git a/public/helix-golf/og.jpg b/public/og.jpg similarity index 100% rename from public/helix-golf/og.jpg rename to public/og.jpg