next.js/test/integration/error-in-error/pages/index.js
index.js15 lines228 B
import Link from 'next/link'

function Index() {
  return (
    <>
      <h3>Hi 👋</h3>
      <Link href="/a-non-existing-page">a link to no-where</Link>
    </>
  )
}

Index.getInitialProps = () => ({})

export default Index
Quest for Codev2.0.0
/
SIGN IN