From 13e220df26c4cc0e113154ca6b29692a0335948f Mon Sep 17 00:00:00 2001 From: Gabor Ottlik Date: Tue, 30 Jul 2019 16:14:13 +0100 Subject: [PATCH] Fix a typo in README --- packages/next/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.