Browse Source

fix: add redirects for mining and stacking pages

feat/mainnet-updates
CharlieC3 4 years ago
committed by Thomas Osmonson
parent
commit
39fdd50ab9
  1. 10
      next.config.js

10
next.config.js

@ -455,6 +455,11 @@ async function redirects() {
destination: '/understand-stacks/atlas-usage', destination: '/understand-stacks/atlas-usage',
permanent: true, permanent: true,
}, },
{
source: '/stacks-blockchain/integrate-stacking',
destination: '/understand-stacks/integrate-stacking',
permanent: true,
},
{ {
source: '/understand-stacks/atlas/usage', source: '/understand-stacks/atlas/usage',
destination: '/understand-stacks/atlas-usage', destination: '/understand-stacks/atlas-usage',
@ -597,6 +602,11 @@ async function redirects() {
destination: '/references/stacks-blockchain-api', destination: '/references/stacks-blockchain-api',
permanent: true, permanent: true,
}, },
{
source: '/mining',
destination: '/start-mining',
permanent: true,
},
]; ];
} }

Loading…
Cancel
Save