From 6aedfb13b491aba00d9a79c9ba4fd056766024c9 Mon Sep 17 00:00:00 2001 From: Lee Calcote Date: Tue, 30 Jul 2024 17:27:29 -0500 Subject: [PATCH 1/2] Chore: Redirect to new blog location Signed-off-by: Lee Calcote --- gatsby-node.js | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/gatsby-node.js b/gatsby-node.js index 838d06780192..ad59d04ad47f 100644 --- a/gatsby-node.js +++ b/gatsby-node.js @@ -266,7 +266,13 @@ exports.createPages = async ({ actions, graphql, reporter }) => { redirectInBrowser: true, isPermanent: true, }); - + createRedirect({ + fromPath: "/blog/announcements/meshery-5000-star-milestone", + toPath: "/blog/announcements/mesherys-5000-star-milestone", + redirectInBrowser: true, + isPermanent: true, + }); + //**** // External Resource Redirects //**** From 6c586d81d30c32b62da11c72388aa9fd03e614d2 Mon Sep 17 00:00:00 2001 From: Lee Calcote Date: Tue, 30 Jul 2024 17:28:37 -0500 Subject: [PATCH 2/2] Chore: Redirect to new blog location Signed-off-by: Lee Calcote --- gatsby-node.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gatsby-node.js b/gatsby-node.js index ad59d04ad47f..76e47087e289 100644 --- a/gatsby-node.js +++ b/gatsby-node.js @@ -272,7 +272,7 @@ exports.createPages = async ({ actions, graphql, reporter }) => { redirectInBrowser: true, isPermanent: true, }); - + //**** // External Resource Redirects //****