Add favicon.svg to the public directory
All checks were successful
SteamWarCI Build successful

This commit is contained in:
2025-04-05 15:06:10 +02:00
parent 2d601b9c4d
commit 20a47ca6b6
9 changed files with 31 additions and 6 deletions

View File

@@ -15,7 +15,7 @@ import {type Player} from "../components/types/data";
import PostComponent from "../components/PostComponent.astro";
import BackgroundImage from "../components/BackgroundImage.astro";
const teamMember: { [key: string]: Player[]} = await fetch("http://127.0.0.1:1337/data/team")
const teamMember: { [key: string]: Player[]} = await fetch(import.meta.env.PUBLIC_API_SERVER + "/data/team")
.then(value => value.json());
const posts = await getCollection("announcements", entry => entry.id.split("/")[0] === astroI18n.locale);