From 4870815cc879a43e60f40a86a3ec9f13a36a96f4 Mon Sep 17 00:00:00 2001 From: Diptayan Jash Date: Mon, 22 Sep 2025 20:30:54 +0530 Subject: [PATCH] Add redirect configuration for /applyod to external application --- next.config.mjs | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/next.config.mjs b/next.config.mjs index cab1d15..bff81df 100644 --- a/next.config.mjs +++ b/next.config.mjs @@ -8,6 +8,15 @@ const nextConfig = { hostname: "**" } ] + }, + async redirects() { + return [ + { + source: '/applyod', + destination: "http://10.1.105.62/srmleaveapp", + permanent: true, + } + ]; } };