From 847cfb166f649efe2d09eae86e1fa1090c14f1f2 Mon Sep 17 00:00:00 2001 From: Alex Carpenter Date: Mon, 13 Dec 2021 14:25:32 -0500 Subject: [PATCH] fix: redirects /home to / --- website/redirects.next.js | 1 + 1 file changed, 1 insertion(+) diff --git a/website/redirects.next.js b/website/redirects.next.js index 8c2e6d1c1..c1c079373 100644 --- a/website/redirects.next.js +++ b/website/redirects.next.js @@ -5,6 +5,7 @@ // Next.js redirect documentation: https://nextjs.org/docs/api-reference/next.config.js/redirects module.exports = [ + { source: '/home', destination: '/', permanent: true }, { source: '/support', destination: '/', permanent: true }, { source: '/sponsors', destination: '/', permanent: true }, { source: '/about', destination: '/intro', permanent: true },