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, + } + ]; } };