Skip to content

Commit 77a6f37

Browse files
fix: add redirects for old /docs/basics/concepts paths (#852)
Add Docusaurus client-side redirects for concept pages moved from /docs/basics/concepts/* to /docs/ckb-fundamentals/* during the docs restructure. The reported 404s include /docs/basics/concepts/ckb-vm; this covers all concept pages from the old path. Co-authored-by: Claude <noreply@anthropic.com>
1 parent 5b46e9a commit 77a6f37

1 file changed

Lines changed: 20 additions & 0 deletions

File tree

website/docusaurus.config.js

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -172,6 +172,26 @@ const config = {
172172
from: "/docs/basics/concepts/economics",
173173
to: "/docs/assets-token-standards/economics",
174174
},
175+
{
176+
from: "/docs/basics/concepts/cell-model",
177+
to: "/docs/ckb-fundamentals/cell-model",
178+
},
179+
{
180+
from: "/docs/basics/concepts/ckb-vm",
181+
to: "/docs/ckb-fundamentals/ckb-vm",
182+
},
183+
{
184+
from: "/docs/basics/concepts/consensus",
185+
to: "/docs/ckb-fundamentals/consensus",
186+
},
187+
{
188+
from: "/docs/basics/concepts/cryptowallet",
189+
to: "/docs/integrate-wallets/intro-to-wallets",
190+
},
191+
{
192+
from: "/docs/basics/concepts/nervos-blockchain",
193+
to: "/docs/ckb-fundamentals/nervos-blockchain",
194+
},
175195
{
176196
from: "/docs/basics/glossary/",
177197
to: "/docs/tech-explanation/glossary",

0 commit comments

Comments
 (0)