can not redirect in next 12
Answered
Common carp posted this in #help-forum
Common carpOP
Hi guys, I'm using next 12 and I want to redirect user from
/ to /market-place/browse-products but it does not work. Can anyone help me?Answered by Blue Picardy Spaniel
the correct way to do it is this:
redirects: () => {
return [
{
source: "",
destination: "",
permanent: true
}
];
}3 Replies
@Common carp Hi guys, I'm using next 12 and I want to redirect user from `/` to `/market-place/browse-products` but it does not work. Can anyone help me?
Blue Picardy Spaniel
the correct way to do it is this:
redirects: () => {
return [
{
source: "",
destination: "",
permanent: true
}
];
}Answer
Blue Picardy Spaniel
np