From aee2d0dbba7283ffa346c037f063ed4d0e50223c Mon Sep 17 00:00:00 2001 From: Peer Richelsen Date: Tue, 15 Feb 2022 15:13:27 +0000 Subject: [PATCH] temporal redirect cal.com/call to cal.com/video (#1856) Co-authored-by: Peer Richelsen --- apps/web/next.config.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/apps/web/next.config.js b/apps/web/next.config.js index 975a02dc50..e676aefb83 100644 --- a/apps/web/next.config.js +++ b/apps/web/next.config.js @@ -92,6 +92,11 @@ module.exports = () => plugins.reduce((acc, next) => next(acc), { destination: "/bookings/upcoming", permanent: true, }, + { + source: '/call/:path*', + destination: '/video/:path*', + permanent: false + } ]; }, });