From bcd7b4d27f6e3919505272ba4d0346aa8c31e065 Mon Sep 17 00:00:00 2001 From: Evan Barger Date: Tue, 2 Mar 2021 18:01:55 -0500 Subject: [PATCH] Turn force: true on for legacyRedirects --- src/constants/gatsby-node-utils.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/constants/gatsby-node-utils.js b/src/constants/gatsby-node-utils.js index 370bfd399bc..17b1386c69a 100644 --- a/src/constants/gatsby-node-utils.js +++ b/src/constants/gatsby-node-utils.js @@ -293,6 +293,7 @@ const configureLegacyRedirects = ({ toPath: toPath, redirectInBrowser: false, isPermanent: false, + force: true, }); if (toLatestPath) { @@ -301,6 +302,7 @@ const configureLegacyRedirects = ({ toPath: toLatestPath, redirectInBrowser: false, isPermanent: false, + force: true, }); } });