Document staticPageGenerationTimeout config (#32306)

* Document staticPageGenerationTimeout config

* Apply suggestions from code review

Co-authored-by: Steven <steven@ceriously.com>

* Reword no activity

* Apply suggestions from code review

Co-authored-by: Steven <steven@ceriously.com>

* fix lint-language

Co-authored-by: Steven <steven@ceriously.com>
This commit is contained in:
JJ Kasper 2021-12-08 17:05:05 -06:00 committed by GitHub
parent 0b86bfa590
commit 8d241ac4a7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -45,6 +45,7 @@ In addition, well talk briefly about how to fetch data on the client side.
| Version | Changes |
| --------- | ----------------------------------------------------------------------------------------------------------------- |
| `v12.0.0` | `staticPageGenerationTimeout` added. |
| `v10.0.0` | `locale`, `locales`, `defaultLocale`, and `notFound` options added. |
| `v9.5.0` | Stable [Incremental Static Regeneration](https://nextjs.org/blog/next-9-5#stable-incremental-static-regeneration) |
| `v9.3.0` | `getStaticProps` introduced. |
@ -220,6 +221,17 @@ function Blog({ posts }: InferGetStaticPropsType<typeof getStaticProps>) {
export default Blog
```
Note: Next.js has a default static generation timeout of 60 seconds. If no new pages complete generating within the timeout, it will attempt generation three more times. If the fourth attempt fails, the build will fail. This timeout can be modified using the following configuration:
```js
// next.config.js
module.exports = {
// time in seconds of no pages generating during static
// generation before timing out
staticPageGenerationTimeout: 90,
}
```
### Incremental Static Regeneration
<details open>