From ae63d0dea06faee494a4a34b77bf583955f967a7 Mon Sep 17 00:00:00 2001 From: Horacio Daniel Ros Date: Wed, 16 Sep 2026 09:55:24 -0300 Subject: [PATCH] =?UTF-8?q?feat:=20ajustar=20prioridad=20de=20rutas=20de?= =?UTF-8?q?=20videos=20y=20eliminar=20im=C3=A1genes=20de=20miniaturas=20en?= =?UTF-8?q?=20el=20sitemap?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- txclient/src/app/sitemap.xml/route.ts | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/txclient/src/app/sitemap.xml/route.ts b/txclient/src/app/sitemap.xml/route.ts index d76885a..bf62939 100644 --- a/txclient/src/app/sitemap.xml/route.ts +++ b/txclient/src/app/sitemap.xml/route.ts @@ -46,18 +46,13 @@ export async function GET() { ]; // Dynamic video routes (one per tutorial) + // Note: video thumbnails are hosted on YouTube's CDN (i*.ytimg.com); Google's image + // sitemap extension targets images on your own domain, so they are omitted here. const allVideos = getAllVideos(); const videoRoutes: SitemapRoute[] = allVideos.map((video) => ({ url: `${baseUrl}/landing/help/video/${video.id}`, changeFrequency: "monthly", - priority: 0.6, - images: [ - { - url: video.thumbnail, - title: video.title, - caption: video.description, - }, - ], + priority: 0.8, })); // Login and signup routes (lower priority)