From 25fb9bd448295fa5557c9166b5f64f4a7797b4f5 Mon Sep 17 00:00:00 2001 From: Vivek Vishal Date: Tue, 5 Nov 2024 08:42:09 +0530 Subject: [PATCH] add redirects Signed-off-by: Vivek Vishal --- gatsby-node.js | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/gatsby-node.js b/gatsby-node.js index cc5cf9aa3892..f9b895fa2df3 100644 --- a/gatsby-node.js +++ b/gatsby-node.js @@ -308,6 +308,24 @@ exports.createPages = async ({ actions, graphql, reporter }) => { redirectInBrowser: true, isPermanent: true, }); + createRedirect({ + fromPath: "/cloud-native-management/kanvas/visualize", + toPath: "/cloud-native-management/kanvas/operator", + redirectInBrowser: true, + isPermanent: true, + }); + createRedirect({ + fromPath: "/kanvas/visualize", + toPath: "/cloud-native-management/kanvas/operator", + redirectInBrowser: true, + isPermanent: true, + }); + createRedirect({ + fromPath: "/kanvas/operator", + toPath: "/cloud-native-management/kanvas/operator", + redirectInBrowser: true, + isPermanent: true, + }); createRedirect({ fromPath: "/resources/cloud-native/hpes-adoption-of-meshery-and-meshmap", toPath: "/resources/case-study/hpes-adoption-of-meshery-and-meshmap",