From c11310b0f152c1aef20016c6dc0e2833c35badcf Mon Sep 17 00:00:00 2001 From: Jan Klimo Date: Tue, 13 Sep 2022 13:22:25 +0200 Subject: [PATCH] Fix a typo in docs (#40501) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Bug - [ ] Related issues linked using `fixes #number` - [ ] Integration tests added - [ ] Errors have helpful link attached, see `contributing.md` ## Feature - [ ] Implements an existing feature request or RFC. Make sure the feature request has been accepted for implementation before opening a PR. - [ ] Related issues linked using `fixes #number` - [ ] Integration tests added - [ ] Documentation added - [ ] Telemetry added. In case of a feature if it's used or not. - [ ] Errors have helpful link attached, see `contributing.md` ## Documentation / Examples - [ ] Make sure the linting passes by running `pnpm lint` - [ ] The examples guidelines are followed from [our contributing doc](https://github.com/vercel/next.js/blob/canary/contributing.md#adding-examples) Co-authored-by: Balázs Orbán --- errors/invalid-page-config.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/errors/invalid-page-config.md b/errors/invalid-page-config.md index c9feeb38dbaa..a535a29056c7 100644 --- a/errors/invalid-page-config.md +++ b/errors/invalid-page-config.md @@ -7,7 +7,7 @@ In one of your pages or API Routes you did `export const config` with an invalid #### Possible Ways to Fix It The page's config must be an object initialized directly when being exported and not modified dynamically. -The config object must only contains static constant literals without expressions. +The config object must only contain static constant literals without expressions.