From cead054455a94adbf1fe497c7a484b96790e11b5 Mon Sep 17 00:00:00 2001 From: Caner Akdas Date: Tue, 11 Nov 2025 19:27:44 +0300 Subject: [PATCH] fix: version information in title --- src/generators/web/utils/processing.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/generators/web/utils/processing.mjs b/src/generators/web/utils/processing.mjs index d6474fb4..eeb5c091 100644 --- a/src/generators/web/utils/processing.mjs +++ b/src/generators/web/utils/processing.mjs @@ -82,7 +82,7 @@ export async function processJSXEntries( // Bundle all client code at once (with code splitting for shared chunks) const clientBundle = await bundleCode(clientCodeMap); - const titleSuffix = `Node.js v${version} Documentation`; + const titleSuffix = `Node.js v${version.version} Documentation`; const speculationRulesString = JSON.stringify(SPECULATION_RULES, null, 2);