Hi,
After Logout it is taking 5 secns to redirect to homepage
i want to reduce those time to 2 secns
how can i acheive this one ?
Thanks
Somu N
Solved! Go to Solution.
Hello @sekhar_n
Here's an alternate solution too.
You can manage redirection using following files:
As per my suggestion, you need to override these files in your custom theme or custom module.
Replace the below code:
return function (data) { $($.mage.redirect(data.url, 'assign', 5000)); };
with
return function (data) { $($.mage.redirect(data.url, 'assign', 2000)); };
Hope it helps.
Hello @sekhar_n
Here's an alternate solution too.
You can manage redirection using following files:
As per my suggestion, you need to override these files in your custom theme or custom module.
Replace the below code:
return function (data) { $($.mage.redirect(data.url, 'assign', 5000)); };
with
return function (data) { $($.mage.redirect(data.url, 'assign', 2000)); };
Hope it helps.