next.js/test/e2e/app-dir/segment-cache/prefetch-auto/app/page.tsx
page.tsx17 lines414 B
import { LinkAccordion } from '../components/link-accordion'

export default function Page() {
  return (
    <>
      <p>
        This page is used to test that prefetch="auto" uses the default
        prefetching strategy (the same as if no prefetch prop is given).
      </p>

      <LinkAccordion prefetch="auto" href="/dynamic">
        Dynamic page with loading boundary
      </LinkAccordion>
    </>
  )
}
Quest for Codev2.0.0
/
SIGN IN