diff --git a/packages/next/README.md b/packages/next/README.md index 4eb344219a62e..cb0645c793fda 100644 --- a/packages/next/README.md +++ b/packages/next/README.md @@ -2063,7 +2063,7 @@ module.exports = { ## Automatic Prerendering -Next.js automatically determines that a page is static (can be prerendered) if it has no has blocking data requirements. +Next.js automatically determines that a page is static (can be prerendered) if it has no blocking data requirements. This determination is made by the absence of `getInitialProps` in the page. If `getInitialProps` is present, Next.js will not prerender the page.