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 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 | /** * Dynamic Sitemap Generation * Generates sitemap.xml for SEO with all public pages */ import { MetadataRoute } from "next"; import { prisma } from "@/lib/prisma"; import { SITE_CONFIG } from "@/lib/seo"; export default async function sitemap(): Promise<MetadataRoute.Sitemap> { const baseUrl = SITE_CONFIG.url; // Static pages with their priorities and change frequencies const staticPages: MetadataRoute.Sitemap = [ { url: baseUrl, lastModified: new Date(), changeFrequency: "daily", priority: 1, }, { url: `${baseUrl}/shop`, lastModified: new Date(), changeFrequency: "daily", priority: 0.9, }, { url: `${baseUrl}/about`, lastModified: new Date(), changeFrequency: "monthly", priority: 0.5, }, { url: `${baseUrl}/contact`, lastModified: new Date(), changeFrequency: "monthly", priority: 0.5, }, { url: `${baseUrl}/faq`, lastModified: new Date(), changeFrequency: "monthly", priority: 0.4, }, ]; // Fetch products for dynamic product pages let productPages: MetadataRoute.Sitemap = []; try { const products = await prisma.product.findMany({ select: { id: true, updatedAt: true, }, orderBy: { updatedAt: "desc" }, }); productPages = products.map((product) => ({ url: `${baseUrl}/product/${product.id}`, lastModified: product.updatedAt, changeFrequency: "weekly" as const, priority: 0.8, })); } catch (error) { // Database might not be available during build console.warn("Could not fetch products for sitemap:", error); } // Fetch categories for dynamic category pages let categoryPages: MetadataRoute.Sitemap = []; try { const categories = await prisma.category.findMany({ select: { slug: true, createdAt: true, }, orderBy: { createdAt: "desc" }, }); categoryPages = categories.map((category) => ({ url: `${baseUrl}/shop?category=${category.slug}`, lastModified: category.createdAt, changeFrequency: "weekly" as const, priority: 0.7, })); } catch (error) { // Database might not be available during build console.warn("Could not fetch categories for sitemap:", error); } return [...staticPages, ...productPages, ...categoryPages]; } |