From 5885db4b917f818353288239f599d7a977434af6 Mon Sep 17 00:00:00 2001 From: Oleksandr Hrab Date: Wed, 26 Feb 2025 18:34:40 +0200 Subject: [PATCH] fix: delete rewrite rules --- next.config.mjs | 9 --------- 1 file changed, 9 deletions(-) diff --git a/next.config.mjs b/next.config.mjs index d9fe9608..a8ea6bf9 100644 --- a/next.config.mjs +++ b/next.config.mjs @@ -22,15 +22,6 @@ const config = { inlineCss: true, reactCompiler: true, }, - async redirects() { - return [ - { - source: '/documentation', - destination: '/documentation/', - permanent: true, - } - ]; - }, }; export default withMDX(config);