From a8a958e15cd2716b5c7718c71f3056d1e8fd0021 Mon Sep 17 00:00:00 2001 From: FOLX Bot Date: Sun, 16 Aug 2026 15:37:11 +0200 Subject: [PATCH] Sitemap: /aktuelles v dejansko uporabljeno pot (prejsnji vnos je pristal v podvojeni, neaktivni definiciji) --- server/routes.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/server/routes.ts b/server/routes.ts index 834b104..d810bb4 100644 --- a/server/routes.ts +++ b/server/routes.ts @@ -107,7 +107,7 @@ export async function registerRoutes( app.get("/sitemap.xml", async (_req, res) => { try { const articles = await storage.getArticles(); - const staticPaths = ["/", "/news", "/video", "/galerie", "/horoskop", "/rezepte", "/kontakt", "/impressum", "/datenschutz"]; + const staticPaths = ["/", "/aktuelles", "/news", "/video", "/galerie", "/horoskop", "/rezepte", "/kontakt", "/impressum", "/datenschutz"]; const urls: string[] = []; for (const p of staticPaths) { urls.push(` \n ${SITE}${p}\n daily\n ${p === "/" ? "1.0" : "0.7"}\n `); @@ -950,7 +950,6 @@ export async function registerRoutes( const staticPages = [ { loc: "/", priority: "1.0", changefreq: "daily" }, - { loc: "/aktuelles", priority: "0.8", changefreq: "hourly" }, { loc: "/videos", priority: "0.8", changefreq: "daily" }, { loc: "/gallery", priority: "0.7", changefreq: "weekly" }, { loc: "/horoskop", priority: "0.7", changefreq: "daily" },