From c68b9b5d2b2e2c0652d85da9f79c91ba69b7ece5 Mon Sep 17 00:00:00 2001 From: NAVEEN K Date: Thu, 25 Dec 2025 20:17:36 +0530 Subject: [PATCH 1/3] docs: fix broken /download link on Nodejs Releases page (#8451) --- apps/site/pages/en/about/previous-releases.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/site/pages/en/about/previous-releases.mdx b/apps/site/pages/en/about/previous-releases.mdx index d17cc4d983d63..f7d729a869292 100644 --- a/apps/site/pages/en/about/previous-releases.mdx +++ b/apps/site/pages/en/about/previous-releases.mdx @@ -41,7 +41,7 @@ Installation methods designated as “Official” must meet the following requir ### Community Installation Methods -Community installation methods included on the self-service download page (/download) must also adhere to a minimum set of criteria: +Community installation methods included on the self-service [download page](/download) must also adhere to a minimum set of criteria: - **Version Support:** Must support all currently supported, non-End-of-Life (EOL) Node.js versions. - **OS Compatibility:** Must function on at least one officially supported Operating System (OS). From df442159f91db4da7a60dc30ff393a086e9c8582 Mon Sep 17 00:00:00 2001 From: NAVEEN K Date: Fri, 26 Dec 2025 08:17:02 +0530 Subject: [PATCH 2/3] docs: clarify /download reference on Previous Releases page --- apps/site/next-env.d.ts | 2 +- apps/site/pages/en/about/previous-releases.mdx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/site/next-env.d.ts b/apps/site/next-env.d.ts index c05d9f7d66f17..cdb6b7b848c32 100644 --- a/apps/site/next-env.d.ts +++ b/apps/site/next-env.d.ts @@ -1,7 +1,7 @@ /// /// /// -import './.next/types/routes.d.ts'; +import './.next/dev/types/routes.d.ts'; // NOTE: This file should not be edited // see https://nextjs.org/docs/app/api-reference/config/typescript for more information. diff --git a/apps/site/pages/en/about/previous-releases.mdx b/apps/site/pages/en/about/previous-releases.mdx index f7d729a869292..456e9fe96539d 100644 --- a/apps/site/pages/en/about/previous-releases.mdx +++ b/apps/site/pages/en/about/previous-releases.mdx @@ -41,7 +41,7 @@ Installation methods designated as “Official” must meet the following requir ### Community Installation Methods -Community installation methods included on the self-service [download page](/download) must also adhere to a minimum set of criteria: +Community installation methods included on the self-service (located at /download) must also adhere to a minimum set of criteria: - **Version Support:** Must support all currently supported, non-End-of-Life (EOL) Node.js versions. - **OS Compatibility:** Must function on at least one officially supported Operating System (OS). From 137f1830e1fb018480c0ce2b34c4f86063846c48 Mon Sep 17 00:00:00 2001 From: NAVEEN K Date: Fri, 26 Dec 2025 08:48:49 +0530 Subject: [PATCH 3/3] chore: fix accidental dev-only Next.js types import --- apps/site/next-env.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/site/next-env.d.ts b/apps/site/next-env.d.ts index cdb6b7b848c32..c05d9f7d66f17 100644 --- a/apps/site/next-env.d.ts +++ b/apps/site/next-env.d.ts @@ -1,7 +1,7 @@ /// /// /// -import './.next/dev/types/routes.d.ts'; +import './.next/types/routes.d.ts'; // NOTE: This file should not be edited // see https://nextjs.org/docs/app/api-reference/config/typescript for more information.