From ab1896fbf4da4b90f900d845a8410b7350ea9edd Mon Sep 17 00:00:00 2001 From: Divyansh Singh <40380293+brc-dd@users.noreply.github.com> Date: Fri, 24 Jul 2026 18:29:16 +0530 Subject: [PATCH] feat: update option stability annotations `buildConcurrency`, `rewrites`, and `sitemap` are no longer marked experimental, while `useWebFonts` now is. Co-Authored-By: Claude Fable 5 --- src/node/siteConfig.ts | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/src/node/siteConfig.ts b/src/node/siteConfig.ts index 2a216a78..eab74b60 100644 --- a/src/node/siteConfig.ts +++ b/src/node/siteConfig.ts @@ -110,6 +110,7 @@ export interface UserConfig< * If you are a theme author, to support this, place your web font import * between `webfont-marker-begin` and `webfont-marker-end` comments. * + * @experimental * @default true in webcontainers, else false */ useWebFonts?: boolean @@ -118,21 +119,15 @@ export interface UserConfig< * This option allows you to configure the concurrency of the build. * A lower number will reduce the memory usage but will increase the build time. * - * @experimental * @default 64 */ buildConcurrency?: number /** - * @experimental - * * source -> destination */ rewrites?: Record | ((id: string) => string) - /** - * @experimental - */ sitemap?: SitemapStreamOptions & { hostname: string transformItems?: (items: SitemapItem[]) => Awaitable