Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow
generateMetadata
to be synchronous (#45696)
The very-newly-released `generateMetadata` function currently does not allow itself to be synchronous. It leads to situations like this ```ts export async function generateMetadata() { return { title: "Hello, world!" }; } ``` where there's evidently no reason to use `async`, but it's forced by Next.js. This PR aims to remove this restriction: `generateMetadata` can be synchronous now. ## Bug - [x] Related issues linked using `fixes #45685` - [ ] Integration tests added - [ ] Errors have a helpful link attached, see [`contributing.md`](https://github.com/vercel/next.js/blob/canary/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` - [x] [e2e](https://github.com/vercel/next.js/blob/canary/contributing/core/testing.md#writing-tests-for-nextjs) tests added - [ ] Documentation added - [ ] Telemetry added. In case of a feature if it's used or not. - [ ] Errors have a helpful link attached, see [`contributing.md`](https://github.com/vercel/next.js/blob/canary/contributing.md) ## Documentation / Examples - [ ] Make sure the linting passes by running `pnpm build && pnpm lint` - [ ] The "examples guidelines" are followed from [our contributing doc](https://github.com/vercel/next.js/blob/canary/contributing/examples/adding-examples.md) Signed-off-by: Vu Van Dung <me@joulev.dev> Co-authored-by: Jiachi Liu <inbox@huozhi.im>
- Loading branch information