generateSitemaps
generateSitemaps
関数を使用して、アプリケーションの複数のサイトマップを生成することができます。
Returns
generateSitemaps
は、id
プロパティを持つ Object の配列を返します。
URLs
本番環境では、生成されたサイトマップは /.../sitemap/[id].xml
で利用可能です。例えば、/product/sitemap/1.xml
。
開発中は、生成されたサイトマップを /.../sitemap.xml/[id]
で確認できます。例えば、/product/sitemap.xml/1
。この違いは一時的で、本番フォーマットに従うことになります。
Example
たとえば、generateSitemaps
を使用してサイトマップを分割する場合、サイトマップの id
を持つオブジェクトの配列を返します。その後、id
を使用してユニークなサイトマップを生成します。
app/product/sitemap.ts
import { BASE_URL } from '@/app/lib/constants'
export async function generateSitemaps() {
// Fetch the total number of products and calculate the number of sitemaps needed
return [{ id: 0 }, { id: 1 }, { id: 2 }, { id: 3 }]
}
export default async function sitemap({
id,
}: {
id: number
}): MetadataRoute.Sitemap {
// Google's limit is 50,000 URLs per sitemap
const start = id * 50000
const end = start + 50000
const products = await getProducts(
`SELECT id, date FROM products WHERE id BETWEEN ${start} AND ${end}`
)
return products.map((product) => ({
url: `${BASE_URL}/product/${product.id}`
lastModified: product.date,
}))
}
app/product/sitemap.js
import { BASE_URL } from '@/app/lib/constants'
export async function generateSitemaps() {
// Fetch the total number of products and calculate the number of sitemaps needed
return [{ id: 0 }, { id: 1 }, { id: 2 }, { id: 3 }]
}
export default async function sitemap({ id }) {
// Google's limit is 50,000 URLs per sitemap
const start = id * 50000
const end = start + 50000
const products = await getProducts(
`SELECT id, date FROM products WHERE id BETWEEN ${start} AND ${end}`
)
return products.map((product) => ({
url: `${BASE_URL}/product/${id}`,
lastModified: product.date,
}))
}