Skip to content

Commit

Permalink
Refactor redirect paths for Kanvas and Meshmap
Browse files Browse the repository at this point in the history
Signed-off-by: Lee Calcote <[email protected]>
  • Loading branch information
leecalcote committed Sep 10, 2024
1 parent 123523f commit 281bc63
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions gatsby-node.js
Original file line number Diff line number Diff line change
Expand Up @@ -284,6 +284,18 @@ exports.createPages = async ({ actions, graphql, reporter }) => {
redirectInBrowser: true,
isPermanent: true,
});
createRedirect({
fromPath: "/kanvas",
toPath: "/cloud-native-management/meshmap",
redirectInBrowser: true,
isPermanent: true,
});
createRedirect({
fromPath: "/cloud-native-management/meshmap",
toPath: "/cloud-native-management/kanvas",
redirectInBrowser: true,
isPermanent: true,
});
createRedirect({
fromPath: "/meshmap",
toPath: "/cloud-native-management/meshmap",
Expand Down

0 comments on commit 281bc63

Please sign in to comment.