From a194609ce2f8e1a57aa0d480d981c2fdc2e8c008 Mon Sep 17 00:00:00 2001 From: Pascal Fischer Date: Tue, 9 May 2023 16:45:23 +0200 Subject: [PATCH] add more redirects --- next.config.mjs | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/next.config.mjs b/next.config.mjs index 96158e0c..15abe9e0 100644 --- a/next.config.mjs +++ b/next.config.mjs @@ -26,6 +26,16 @@ const nextConfig = { destination: '/docs/introductions', permanent: true, }, + { + source: '/docs', + destination: '/docs/introductions', + permanent: true, + }, + { + source: '/ipa', + destination: '/ipa/introductions', + permanent: true, + }, ] } }