Next.js Discord

Discord Forum

can not redirect in next 12

Answered
Common carp posted this in #help-forum
Open in Discord
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
      }
    ];
  }
View full answer

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