next.js/test/integration/mixed-ssg-serverprops-error/pages/index.js.alt
index.js.alt14 lines255 B
export const getStaticPaths = async () => {
  return {
    props: { world: 'world' }, fallback: true
  }
}

export const getServerSideProps = async () => {
  return {
    props: { world: 'world' }
  }
}

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