Skip to content

Commit

Permalink
add redirects
Browse files Browse the repository at this point in the history
Signed-off-by: Vivek Vishal <[email protected]>
  • Loading branch information
vishalvivekm authored Nov 5, 2024
1 parent 0cbc22d commit 25fb9bd
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions gatsby-node.js
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 25fb9bd

Please sign in to comment.