Problem
After cleanup of empty/redundant pages (#191 / related PRs), old public URLs can 404:
/docs/how-to-guide/beginner/howtocreateaddress
/docs/resources/tools
/docs/how-to-guide/intermediate
/docs/tutorials/readme (if that slug was indexed)
The production build also warns about a broken anchor:
/docs/resources/repositories → /docs/how-to-guide/advanced/core-protocol-contributor#how-to-contribute-a-cip
Proposed solution
- Add
@docusaurus/plugin-client-redirects (matching current Docusaurus version) with redirects from the removed paths to the best live targets (e.g. address guide, repositories, beginner guides, payment-detector tutorial).
- Fix or remove the broken CIP contribute anchor link.
- Smoke-check footer + getting-started links after the change.
Acceptance criteria
Related
Problem
After cleanup of empty/redundant pages (#191 / related PRs), old public URLs can 404:
/docs/how-to-guide/beginner/howtocreateaddress/docs/resources/tools/docs/how-to-guide/intermediate/docs/tutorials/readme(if that slug was indexed)The production build also warns about a broken anchor:
/docs/resources/repositories→/docs/how-to-guide/advanced/core-protocol-contributor#how-to-contribute-a-cipProposed solution
@docusaurus/plugin-client-redirects(matching current Docusaurus version) with redirects from the removed paths to the best live targets (e.g. address guide, repositories, beginner guides, payment-detector tutorial).Acceptance criteria
npm run buildinwebsite/succeeds without new broken-link failuresRelated