From 1ccc862e9b7f5fe41af361195e21a5bc1630606d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carl-Gerhard=20Lindesva=CC=88rd?= Date: Thu, 12 Feb 2026 21:47:09 +0000 Subject: [PATCH] public: add redirects --- apps/public/next.config.mjs | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/apps/public/next.config.mjs b/apps/public/next.config.mjs index 4f10f269..1e9de940 100644 --- a/apps/public/next.config.mjs +++ b/apps/public/next.config.mjs @@ -15,6 +15,16 @@ const config = { destination: '/articles/open-source-web-analytics', permanent: true, }, + { + source: '/articles/alternatives-to-mixpanel', + destination: '/articles/mixpanel-alternatives', + permanent: true, + }, + { + source: '/articles/vs-mixpanel', + destination: '/compare/mixpanel-alternative', + permanent: true, + }, ], };