Draft
Conversation
…age poisoning Replace static imports of next/headers, next/navigation, and next-intl/server with dynamic import() calls inside the hooks that use them. Static imports cause these modules to be evaluated during module graph resolution when next.config.ts imports this file, poisoning the process-wide AsyncLocalStorage context. Dynamic imports defer module loading to call time, after Next.js has fully initialized.
Upgrade next, @next/bundle-analyzer, eslint-config-next to ^16.1.0 and @next/eslint-plugin-next to ^16.1.0. React 19.1.5 is already compatible.
Change jsx from "preserve" to "react-jsx" and add .next/dev/types to the include array for generated dev types.
Replace `NextMiddleware` with `NextProxy` and `priority` with `preload` on Image components per Next.js 16 API changes.
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
|
f76ecc6 to
347cab3
Compare
041a4e9 to
ac9f5c6
Compare
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.
What/Why?
Testing
Migration