From d2171c60da4f223b8a75db8cd81f334ab8737ca3 Mon Sep 17 00:00:00 2001 From: Alexander Graebe Date: Thu, 27 Aug 2020 07:28:08 -0700 Subject: [PATCH] fix: adding back redirects to wallet faq and token overview --- next.config.js | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/next.config.js b/next.config.js index bb7b9f7a..524c3df2 100755 --- a/next.config.js +++ b/next.config.js @@ -248,11 +248,37 @@ async function redirects() { destination: '/references/faqs', permanent: true, }, + { source: '/org/token.html', destination: '/ecosystem/stacks-token', permanent: true }, { source: '/org/whitepaper-blockchain.html', destination: 'https://blockstack.org/whitepaper.pdf', permanent: true, }, + { + source: '/org/wallet-intro.html', + destination: '/references/faqs/stacks-token', + permanent: true, + }, + { + source: '/org/wallet-install.html', + destination: '/references/faqs/stacks-token', + permanent: true, + }, + { + source: '/org/wallet-use.html', + destination: '/references/faqs/stacks-token', + permanent: true, + }, + { + source: '/org/wallet-troubleshoot.html', + destination: '/references/faqs/stacks-token', + permanent: true, + }, + { + source: '/org/tokenholders.html', + destination: '/ecosystem/stacks-token', + permanent: true, + }, { source: '/core/cmdLineRef.html', destination: '/references/blockstack-cli', permanent: true }, { source: '/core/smart/clarityref', @@ -311,6 +337,11 @@ async function redirects() { destination: '/storage-hubs/config-schema', permanent: true, }, + { + source: '/org/secureref.html', + destination: '/references/faqs/stacks-token', + permanent: true, + }, { source: '/develop/overview_auth.html', destination: '/authentication/overview',