diff options
| author | Dawid Rycerz <dawid@rycerz.xyz> | 2026-01-13 20:06:15 +0100 |
|---|---|---|
| committer | Dawid Rycerz <dawid@rycerz.xyz> | 2026-01-13 20:06:15 +0100 |
| commit | b6e440699e9fca474869bf74ce09f2310f05c620 (patch) | |
| tree | a089f456a0e9ebb6f9f6b72370deb7eeb8a3e308 /src/components/BaseHead.astro | |
| parent | f8a4e00f89913b0c57ca016965f49efc26f4bff9 (diff) | |
Cleanup unused functionalities
Diffstat (limited to 'src/components/BaseHead.astro')
| -rw-r--r-- | src/components/BaseHead.astro | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/src/components/BaseHead.astro b/src/components/BaseHead.astro index 14286c3..2e5a9cd 100644 --- a/src/components/BaseHead.astro +++ b/src/components/BaseHead.astro @@ -1,5 +1,4 @@ --- -import { WEBMENTION_PINGBACK, WEBMENTION_URL } from "astro:env/client"; import { siteConfig } from "@/site.config"; import type { SiteMeta } from "@/types"; import "@/styles/global.css"; @@ -96,16 +95,6 @@ const ogLocale = getOgLocale(lang); {/* RSS auto-discovery */} <link href="/rss.xml" title="Blog" rel="alternate" type="application/rss+xml" /> -{/* Webmentions */} -{ - WEBMENTION_URL && ( - <> - <link href={WEBMENTION_URL} rel="webmention" /> - {WEBMENTION_PINGBACK && <link href={WEBMENTION_PINGBACK} rel="pingback" />} - </> - ) -} - {/* Plausible Analytics */} <link rel="dns-prefetch" href="//analytics.craftknight.com" /> <script |
