Browse Source

fix: adding back redirects to wallet faq and token overview

feat/user-facing-wallet
Alexander Graebe 4 years ago
parent
commit
d2171c60da
  1. 31
      next.config.js

31
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',

Loading…
Cancel
Save