Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | import { getCollection } from "astro:content";
import type { APIContext } from "astro";
import { SITE_URL, formatDate } from "../utils/sitemap";
export async function GET(_context: APIContext) {
const posts = await getCollection("blog");
// 全記事中の最新日付を取得
const latestDate = posts.reduce((latest, post) => {
const d = new Date(post.data.date);
return d > latest ? d : latest;
}, new Date(0));
const lastmod = formatDate(latestDate);
const xml = `<?xml version="1.0" encoding="UTF-8"?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<sitemap>
<loc>${SITE_URL}/sitemap-posts.xml</loc>
<lastmod>${lastmod}</lastmod>
</sitemap>
<sitemap>
<loc>${SITE_URL}/sitemap-pages.xml</loc>
<lastmod>${lastmod}</lastmod>
</sitemap>
</sitemapindex>`;
return new Response(xml, {
headers: {
"Content-Type": "application/xml; charset=utf-8",
},
});
}
|