import * as cookie from 'cookie' export async function getServerSideProps(context) { const parsedCookies = cookie.parse(context.req.headers.cookie); return { props: {} } }