next.js/test/integration/auto-export-query-error/pages/ssg.js
ssg.js12 lines153 B
const Page = () => "I'm SSRed"

export async function getStaticProps() {
  return {
    props: {
      hello: 'world',
    },
  }
}

export default Page
Quest for Codev2.0.0
/
SIGN IN