From 382d5216fb6b8d6469f03b2be3778bbcf57396dc Mon Sep 17 00:00:00 2001 From: Gigi Date: Tue, 14 Jul 2026 23:09:09 +0200 Subject: [PATCH] feat: redirect /tags/spotlight to /spotlight --- next.config.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/next.config.js b/next.config.js index a18a23536..7055c5ce7 100644 --- a/next.config.js +++ b/next.config.js @@ -75,6 +75,11 @@ module.exports = () => { }, async redirects() { return [ + { + source: '/tags/spotlight', + destination: '/spotlight', + permanent: true, + }, { source: '/projects/nostr', destination: '/funds/nostr',