Browse Source

fix: add redirects for mining and stacking pages

fix/testnet-redirects
CharlieC3 4 years ago
parent
commit
2e16d65305
No known key found for this signature in database GPG Key ID: DDC8A2437C56218
  1. 10
      next.config.js

10
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,
},
];
}

Loading…
Cancel
Save