From da6e940fb6c684b1718947fadd4c8d74882493c0 Mon Sep 17 00:00:00 2001 From: Maycon Santos Date: Fri, 27 Dec 2024 21:37:07 +0100 Subject: [PATCH] add redirect --- next.config.mjs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/next.config.mjs b/next.config.mjs index 715b5af4..52042a44 100644 --- a/next.config.mjs +++ b/next.config.mjs @@ -24,6 +24,11 @@ const nextConfig = { }, redirects: async () => { return [ + { + source: '/how-to/networks-concept', + destination: '/how-to/networks', + permanent: true, + }, { source: '/docs/getting-started/installation', destination: '/how-to/getting-started#installation',