skip to Main Content

I want to pass data between next js pages , large amount of user filled data including image . How can I achieve that?

I tried to look for nextjs docs but I couldn’t find any solution

2

Answers


  1. A small number of parameters are passed through router. If it is a picture, it is better to use vuex

    Login or Signup to reply.
  2. You can either use global React Context or implement a state management library like Redux or Zustand etc.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search