From 030a15025f3d6eac19b94c82817fbcbc6e98fc1e Mon Sep 17 00:00:00 2001 From: sanjibani <18418553+sanjibani@users.noreply.github.com> Date: Wed, 24 Jun 2026 10:57:17 +0530 Subject: [PATCH] docs(router-cli,router-plugin): fix broken with-router-cli install doc links MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The 'with-router-cli' page moved out from under /framework/react/routing/installation/ in a recent docs refactor. The current canonical URL is /docs/installation/with-router-cli (which 200s for both react and solid variants via the framework prefix). Verified manually: the old /framework/react/routing/installation/with-router-cli URL returns 307 → /routing/installation/with-router-cli which then hangs (tanstack.com server is timing out on that subpath) — effectively a 404 from the user perspective. These appear as the only link in @tanstack/router-cli's README, and as the 'See ... for usage instructions' reference in @tanstack/router-plan's README (the file-based-routing link just above is also tagged with framework/react/routing/ but that one 200s after a 307 redirect, so left alone). --- packages/router-cli/README.md | 2 +- packages/router-plugin/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/router-cli/README.md b/packages/router-cli/README.md index ee95816603..43ea33f250 100644 --- a/packages/router-cli/README.md +++ b/packages/router-cli/README.md @@ -2,4 +2,4 @@ # TanStack Router CLI -See https://tanstack.com/router/latest/docs/framework/react/routing/installation/with-router-cli +See https://tanstack.com/router/latest/docs/installation/with-router-cli diff --git a/packages/router-plugin/README.md b/packages/router-plugin/README.md index b3f0484915..8f333aaa38 100644 --- a/packages/router-plugin/README.md +++ b/packages/router-plugin/README.md @@ -10,4 +10,4 @@ See https://tanstack.com/router/latest/docs/framework/react/routing/file-based-r npm install -D @tanstack/router-plugin ``` -See https://tanstack.com/router/latest/docs/framework/react/routing/installation/with-router-cli for usage instructions. +See https://tanstack.com/router/latest/docs/installation/with-router-cli for usage instructions.