From 76560148a30feaaa1331f1c1bb994e45471b2d90 Mon Sep 17 00:00:00 2001 From: Alex Drankou Date: Fri, 15 May 2026 20:58:05 +0200 Subject: [PATCH] chore: add redirect for blog post --- next.config.mjs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/next.config.mjs b/next.config.mjs index 23413aa5a..f42a48385 100644 --- a/next.config.mjs +++ b/next.config.mjs @@ -128,6 +128,12 @@ const config = { destination: '/', permanent: true, }, + { + source: + '/blog/how-perplexity-implemented-advanced-data-analysis-for-pro-users-in-1-week', + destination: '/blog/category/case-studies', + permanent: true, + }, ], skipTrailingSlashRedirect: true, }