We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 45e9dd8 commit 4f65308Copy full SHA for 4f65308
src/components/Head.astro
@@ -5,8 +5,12 @@ const { title = "Chaostreff Osnabrück", ...props } = Astro.props;
5
<head>
6
<meta charset="UTF-8" />
7
<meta name="viewport" content="width=device-width" />
8
- <link rel="icon" type="image/svg+xml" href="/favicon.svg" />
9
- <link rel="sitemap" href="/sitemap-index.xml" />
+ <link
+ rel="icon"
10
+ type="image/svg+xml"
11
+ href=`${import.meta.env.BASE_URL}/favicon.svg`
12
+ />
13
+ <link rel="sitemap" href=`${import.meta.env.BASE_URL}/sitemap-index.xml` />
14
<meta name="generator" content={Astro.generator} />
15
<base href={import.meta.env.BASE_URL} />
16
<title>{title}</title>
0 commit comments