From 2ca6840cf9c07fc616bac591fb7e64c4f94aa7a9 Mon Sep 17 00:00:00 2001 From: Xevion Date: Tue, 28 Nov 2023 02:38:25 -0600 Subject: [PATCH] Add comment on new redirection statements --- next.config.mjs | 1 + 1 file changed, 1 insertion(+) diff --git a/next.config.mjs b/next.config.mjs index 0363961..c7b7985 100644 --- a/next.config.mjs +++ b/next.config.mjs @@ -30,6 +30,7 @@ const v2_redirects = [ "/drafts/presenting-to-humans", "/photography", ].map((url) => { + // If the URL starts with /2, redirect to the new blog. Otherwise, redirect to the old v2 blog to maintain URLs. if (url.startsWith("/2")) return { source: url,