next.js/test/integration/telemetry/pages/gssp.js
gssp.js12 lines233 B
import fs from 'fs'
import path from 'path'

export default () => 'Hello World'

export function getServerSideProps() {
  try {
    fs.readyFile(path.join(process.cwd(), 'public/small.jpg'))
  } catch (_) {}
  return { props: {} }
}
Quest for Codev2.0.0
/
SIGN IN