mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-01-08 23:08:19 -05:00
32 lines
1.2 KiB
TypeScript
32 lines
1.2 KiB
TypeScript
export const redirects: Record<string, string> = {
|
|
'/intro': '/overview',
|
|
// Installation redirects
|
|
'/installation/installation': '/installation/overview',
|
|
'/binaries': '/installation/binaries',
|
|
'/docker': '/installation/docker',
|
|
'/source': '/installation/source',
|
|
// Run a node redirects
|
|
'/run/run-a-node': '/run/overview',
|
|
'/run/mainnet': '/run/ethereum',
|
|
'/run/optimism': '/run/opstack',
|
|
'/run/sync-op-mainnet': '/run/faq/sync-op-mainnet',
|
|
'/run/private-testnet': '/run/private-testnets',
|
|
'/run/observability': '/run/monitoring',
|
|
'/run/config': '/run/configuration',
|
|
'/run/transactions': '/run/faq/transactions',
|
|
'/run/pruning': '/run/faq/pruning',
|
|
'/run/ports': '/run/faq/ports',
|
|
'/run/troubleshooting': '/run/faq/troubleshooting',
|
|
// SDK
|
|
'/sdk/overview': '/sdk',
|
|
// Exex
|
|
'/developers/exex': '/exex/overview',
|
|
'/developers/exex/how-it-works': '/exex/how-it-works',
|
|
'/developers/exex/hello-world': '/exex/hello-world',
|
|
'/developers/exex/tracking-state': '/exex/tracking-state',
|
|
'/developers/exex/remote': '/exex/remote',
|
|
// Contributing
|
|
'/developers/contribute': '/introduction/contributing',
|
|
}
|
|
|
|
export const basePath = '/'; |