fix(next): fix hmr, bump minimum required next.js 16 version to 16.2.2#16202
Merged
DanRibbens merged 7 commits intomainfrom Apr 8, 2026
Merged
fix(next): fix hmr, bump minimum required next.js 16 version to 16.2.2#16202DanRibbens merged 7 commits intomainfrom
DanRibbens merged 7 commits intomainfrom
Conversation
Contributor
📦 esbuild Bundle Analysis for payloadThis analysis was generated by esbuild-bundle-analyzer. 🤖
Largest pathsThese visualization shows top 20 largest paths in the bundle.Meta file: packages/next/meta_index.json, Out file: esbuild/index.js
Meta file: packages/payload/meta_index.json, Out file: esbuild/index.js
Meta file: packages/payload/meta_shared.json, Out file: esbuild/exports/shared.js
Meta file: packages/richtext-lexical/meta_client.json, Out file: esbuild/exports/client_optimized/index.js
Meta file: packages/ui/meta_client.json, Out file: esbuild/exports/client_optimized/index.js
Meta file: packages/ui/meta_shared.json, Out file: esbuild/exports/shared_optimized/index.js
DetailsNext to the size is how much the size has increased or decreased compared with the base branch of this PR.
|
DanRibbens
approved these changes
Apr 8, 2026
Contributor
|
🚀 This is included in version v3.82.0 |
|
Running payload with the latest version resulting in invalid key: Edit: After looking into that Next.js' PR, I think there are inconsistencies between the PR description and the code changes. In the PR description it says |
AlessioGr
added a commit
that referenced
this pull request
Apr 8, 2026
- bumps templates to Payload 3.82.0 - removes the --no-server-fast-refresh flag from templates dev script, as [it is no longer needed with Payload 3.82.0 and Next.js 16.2.2](#16202) --- - To see the specific tasks where the Asana app for GitHub is being used, see below: - https://app.asana.com/0/0/1213983836266021
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

Next.js <16.2.2 requires the
--no-server-fast-refreshflag appended to thenext devcommand in order for HMR to work. In 16.2.2, we can now setexperimental.enableServerFastRefreshto disable server fast refresh, which fixes HMR for all users, without requiring a new flag.This PR:
experimental.enableServerFastRefreshif Next.js >=16.2.2 is detectedAfter release, we'll remove the
--no-server-fast-refreshflag from our templates in a separate PR. We cannot do it in this PR, as a newer Payload version is required