Question from the Next.js test

Fetch the product details from the server on every request and cache it.

Easy

You create a page in your Next.js app in Page Router to display the details of a product. Here is a code snippet:

// pages/products/[productId].js
export async function getServerSideProps(context){
  const{ productId }= context.params;
  const product= await fetchProductDetails(productId);

  context.res.setHeader('Cache-Control', 'public, s-maxage=900, stale-while-revalidate=3600');

  return{ props:{ product } };
}

export default function ProductDetails({ product }){
//...
}

What function does getServerSideProps perform in this case?

Author: AnasStatus: PublishedQuestion passed 161 times
Edit
1
Community EvaluationsNo one has reviewed this question yet, be the first!