Browse Source
fix: add redirects for mining and stacking pages
fix/testnet-redirects
CharlieC3
4 years ago
No known key found for this signature in database
GPG Key ID: DDC8A2437C56218
1 changed files with
10 additions and
0 deletions
-
next.config.js
|
|
@ -455,6 +455,11 @@ async function redirects() { |
|
|
|
destination: '/understand-stacks/atlas-usage', |
|
|
|
permanent: true, |
|
|
|
}, |
|
|
|
{ |
|
|
|
source: '/stacks-blockchain/integrate-stacking', |
|
|
|
destination: '/understand-stacks/integrate-stacking', |
|
|
|
permanent: true, |
|
|
|
}, |
|
|
|
{ |
|
|
|
source: '/understand-stacks/atlas/usage', |
|
|
|
destination: '/understand-stacks/atlas-usage', |
|
|
@ -597,6 +602,11 @@ async function redirects() { |
|
|
|
destination: '/references/stacks-blockchain-api', |
|
|
|
permanent: true, |
|
|
|
}, |
|
|
|
{ |
|
|
|
source: '/mining', |
|
|
|
destination: '/start-mining', |
|
|
|
permanent: true, |
|
|
|
}, |
|
|
|
]; |
|
|
|
} |
|
|
|
|
|
|
|