Pass data from getInitialProps to getServerSideProps
I’m developing a NextJS project and I’m fetching some necessary data in the getInitialProps of _app.js and setting it into cookies. However, I was wondering if there is any way to share this data with getServerSideProps of any page as for the first time I cannot access data from req.cookies in getServerSideProps.