From d6bc0422d84887a23adcd6325d44eaa2a74ef383 Mon Sep 17 00:00:00 2001 From: Felix Nicolae Bucsa Date: Thu, 5 Dec 2024 11:49:46 +0000 Subject: [PATCH] fix --- next.config.js | 98 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 98 insertions(+) diff --git a/next.config.js b/next.config.js index be6edd482..2316e5024 100644 --- a/next.config.js +++ b/next.config.js @@ -375,6 +375,104 @@ module.exports = withNextra({ "/guides/fetch-network/asi-wallet/asi-wallet-hardware-connection-guide", permanent: true, }, + { + source: + "/guides/fetch-network/fetch-wallet/web-wallet/get-started", + destination: + "/guides/fetch-network/asi-wallet/web-wallet/get-started", + permanent: true, + }, + { + source: + "/guides/fetch-network/fetch-wallet/web-wallet/home-screen", + destination: + "/guides/fetch-network/asi-wallet/web-wallet/home-screen", + permanent: true, + }, + { + source: + "/guides/fetch-network/fetch-wallet/web-wallet/stake", + destination: + "/guides/fetch-network/asi-wallet/web-wallet/stake", + permanent: true, + }, + { + source: + "/guides/fetch-network/fetch-wallet/web-wallet/send-receive", + destination: + "/guides/fetch-network/asi-wallet/web-wallet/send-receive", + permanent: true, + }, + { + source: + "/guides/fetch-network/fetch-wallet/web-wallet/activity", + destination: + "/guides/fetch-network/asi-wallet/web-wallet/activity", + permanent: true, + }, + { + source: + "/guides/fetch-network/fetch-wallet/web-wallet/more", + destination: + "/guides/fetch-network/asi-wallet/web-wallet/more", + permanent: true, + }, + { + source: + "/guides/fetch-network/fetch-wallet/web-wallet/gov-proposal", + destination: + "/guides/fetch-network/asi-wallet/web-wallet/gov-proposal", + permanent: true, + }, + { + source: + "/guides/fetch-network/fetch-wallet/mobile-wallet/get-started", + destination: + "/guides/fetch-network/asi-wallet/mobile-wallet/get-started", + permanent: true, + }, + { + source: + "/guides/fetch-network/fetch-wallet/mobile-wallet/home-screen", + destination: + "/guides/fetch-network/asi-wallet/mobile-wallet/home-screen", + permanent: true, + }, + { + source: + "/guides/fetch-network/fetch-wallet/mobile-wallet/stake", + destination: + "/guides/fetch-network/asi-wallet/mobile-wallet/stake", + permanent: true, + }, + { + source: + "/guides/fetch-network/fetch-wallet/mobile-wallet/send-receive", + destination: + "/guides/fetch-network/asi-wallet/mobile-wallet/send-receive", + permanent: true, + }, + { + source: + "/guides/fetch-network/fetch-wallet/mobile-wallet/activity", + destination: + "/guides/fetch-network/asi-wallet/mobile-wallet/activity", + permanent: true, + }, + { + source: + "/guides/fetch-network/fetch-wallet/mobile-wallet/more", + destination: + "/guides/fetch-network/asi-wallet/mobile-wallet/more", + permanent: true, + }, + { + source: + "/guides/fetch-network/fetch-wallet/mobile-wallet/gov-proposal", + destination: + "/guides/fetch-network/asi-wallet/mobile-wallet/gov-proposal", + permanent: true, + }, ]; }, });