opengraph-image
route cannot use Node.js APIs in the nodejs
runtime if its corresponding Page is in the edge
runtime
#77796
Labels
Metadata
Related to Next.js' Metadata API.
Module Resolution
Module resolution (CJS / ESM, module resolving).
Runtime
Related to Node.js or Edge Runtime with Next.js.
Link to the code that reproduces this issue
https://codesandbox.io/p/devbox/zen-panini-rxx6zk
To Reproduce
app/page.tsx
, useedge
runtimeapp/opengraph-image.tsx
, load custom font, following the docs (requiresnodejs
runtime)next dev
and open/
pageNative module not found: node:fs/promises
error/opengraph-image
route manuallyCurrent vs. Expected behavior
Current behavior
If a
page.tsx
uses theedge
runtime, but itsopengraph-image.tsx
uses thenodejs
runtime, it appears as thoughopengraph-image.tsx
is being imported once inside NodeJS and a second time inside the Edge environment. Since the example imports NodeJS-specific modules and usesprocess.cwd()
APIs, it fails to load in the Edge environment. It still manages to render the OG image successfully when visiting the route manually, but it fails to build and errors are logged in thenext dev
stdout.If we use the
edge
runtime for both files, but keep the NodeJS-specific modules and APIs, image generation fails completely.In dev server
/
page fails to load, because the Edge runtime tries to load NodeJS modules:See error message
/opengraph-image
manually, the OG image renders successfully, but a similar error is logged in thenext dev
stdoutSee error message
On build
next build
, webpack failsSee build logs
runtime
export combinationsI tried all the combinations of
runtime
config exports forpage.tsx
andopengraph-image.tsx
to investigate the behavior.See behavior table
page.tsx
runtime exportopengraph-image.tsx
runtime export/
page dev behavior/opengraph-image
route dev behaviornodejs
edge
node:fs/promises
Native module not found errornodejs
nodejs
nodejs
nodejs
edge
node:fs/promises
Native module not found erroredge
node:fs/promises
Native module not found erroredge
nodejs
node:fs/promises
Native module not found erroredge
edge
node:fs/promises
Native module not found errornode:fs/promises
Native module not found errorExpected behavior
If it is possible, I would expect that the OG image route and the page itself to work in 2 different runtimes.
If it's not possible or this behavior is intended, I think the
runtime
configuration should be shared for the entire route segment (or at least the page and OG route). The docs should also mention this fact.Provide environment information
Operating System: Platform: linux Arch: x64 Version: #1 SMP PREEMPT_DYNAMIC Sun Aug 6 20:05:33 UTC 2023 Available memory (MB): 4242 Available CPU cores: 2 Binaries: Node: 20.9.0 npm: 9.8.1 Yarn: 1.22.19 pnpm: 8.10.2 Relevant Packages: next: 15.3.0-canary.33 // Latest available version is detected (15.3.0-canary.33). eslint-config-next: N/A react: 19.0.0 react-dom: 19.0.0 typescript: 5.3.3 Next.js Config: output: N/A
Which area(s) are affected? (Select all that apply)
Metadata, Module Resolution, Runtime
Which stage(s) are affected? (Select all that apply)
next build (local), next dev (local)
Additional context
The solution in this case would be to configure the same runtime for both. In my case, I fixed it by making the
opengraph-image.tsx
useedge
andfetch()
-ing the fonts: bvpav/nextjs-hurdles@ef73fefHowever the fact that both files need to be in the same runtime was not obvious to me and feels like a bug, hence why I am not reporting this as a Docs issue.
The text was updated successfully, but these errors were encountered: