next.js/test/integration/mixed-ssg-serverprops-error/pages/index.js
index.js14 lines241 B
export const getStaticProps = async () => {
  return {
    props: { world: 'world' },
  }
}

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

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