From 874d7faac040852bd7d8f116a9005f2a941da68a Mon Sep 17 00:00:00 2001 From: chattie Date: Mon, 24 Aug 2026 20:52:46 +0200 Subject: [PATCH] fix(storefront): sitemap wraps listActiveProducts in listSafe to prevent build timeout --- project/storefront/src/app/sitemap.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/storefront/src/app/sitemap.ts b/project/storefront/src/app/sitemap.ts index f9333be..85e519a 100644 --- a/project/storefront/src/app/sitemap.ts +++ b/project/storefront/src/app/sitemap.ts @@ -14,7 +14,7 @@ const STATIC_ROUTES = ['/', '/products/search'] as const; export default async function sitemap(): Promise { const [products, categories, brands] = await Promise.all([ - listActiveProducts(), + listSafe(() => listActiveProducts()), listSafe(() => listCategoryTree()), listSafe(() => listBrands()), ]);