You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I expected the /user/[id] route (aka the user/[id]/page.tsx file) to also return a 404, even with streaming enabled, because notFound is returned in generateMetadata().
The generateMetadata function looks like this for both routes:
export async function generateMetadata() {
return notFound()
}
Verify canary release
I verified that the issue exists in the latest Next.js canary release
The not-found file is used to render UI when the notFound function is thrown within a route segment. Along with serving a custom UI, Next.js will return a 200 HTTP status code for streamed responses, and 404 for non-streamed responses.
It is because the behavior is inconsistent; as you can see above it does indeed return a 404 in some routes even though it's streamed. I believe generatedMetadata is blocking before any response is returend, so it should also return a 404 when you do return notFound() in any case.
Link to the code that reproduces this issue
https://github.com/steebchen/nextjs-repro-metadata-404
To Reproduce
Current vs. Expected behavior
I expected the /user/[id] route (aka the
user/[id]/page.tsx
file) to also return a 404, even with streaming enabled, becausenotFound
is returned ingenerateMetadata()
.The generateMetadata function looks like this for both routes:
Verify canary release
Provide environment information
Operating System: Platform: darwin Arch: arm64 Version: Darwin Kernel Version 23.2.0: Wed Nov 15 21:53:18 PST 2023; root:xnu-10002.61.3~2/RELEASE_ARM64_T6000 Binaries: Node: 20.10.0 npm: 10.2.3 Yarn: 1.22.19 pnpm: 8.10.0-0 Relevant Packages: next: 14.0.5-canary.42 eslint-config-next: N/A react: 18.2.0 react-dom: 18.2.0 typescript: 5.1.3 Next.js Config: output: N/A
Which area(s) are affected? (Select all that apply)
App Router
Which stage(s) are affected? (Select all that apply)
next start (local)
Additional context
No response
The text was updated successfully, but these errors were encountered: