From 39fdd50ab9b688256ebb8052757fda977ab69713 Mon Sep 17 00:00:00 2001 From: CharlieC3 <2747302+CharlieC3@users.noreply.github.com> Date: Tue, 8 Dec 2020 12:12:25 -0500 Subject: [PATCH] fix: add redirects for mining and stacking pages --- next.config.js | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/next.config.js b/next.config.js index a0c217fb..3e1b61ea 100755 --- a/next.config.js +++ b/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, + }, ]; }