next.js/test/e2e/getserversideprops/app/pages/custom-cache.js
custom-cache.js13 lines250 B
import React from 'react'

export async function getServerSideProps({ res }) {
  res.setHeader('Cache-Control', 'public, max-age=3600')
  return {
    props: { world: 'world' },
  }
}

export default ({ world }) => {
  return <p>hello: {world}</p>
}
Quest for Codev2.0.0
/
SIGN IN