diff --git a/web/e.cash/next.config.js b/web/e.cash/next.config.js --- a/web/e.cash/next.config.js +++ b/web/e.cash/next.config.js @@ -32,6 +32,15 @@ }, ], }, + async redirects() { + return [ + { + source: '/roadmap-explained', + destination: '/roadmap', + permanent: true, + }, + ]; + }, }; module.exports = nextConfig;