Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dynamic Code Evaluation (e. g. 'eval', 'new Function', 'WebAssembly.compile') not allowed in Edge Runtime #1105

Open
VaniaPopovic opened this issue Dec 18, 2023 · 10 comments

Comments

@VaniaPopovic
Copy link

VaniaPopovic commented Dec 18, 2023

Describe the Bug

Hello, this is the one I was referring to to in the other ticket @gabrielmfern,

I have a monorepo with an auth package, an email package and my main app that consumes both of them.
My desire is for users to login through next-auth and have next-auth send out an email with resend of a login link that is styled with react email.
I have been trying to have the next-auth middleware run on edge in order to make it faster.

The problem that I'm experiencing is that the project works well on dev, but when trying to build and deploy to vercel, it fails with

./node_modules/.pnpm/@[email protected][email protected]/node_modules/@react-email/tailwind/dist/index.mjs
Dynamic Code Evaluation (e. g. 'eval', 'new Function', 'WebAssembly.compile') not allowed in Edge Runtime
Learn More: https://nextjs.org/docs/messages/edge-dynamic-code-evaluation

Import trace for requested module:
./node_modules/.pnpm/@[email protected][email protected]/node_modules/@react-email/tailwind/dist/index.mjs
./node_modules/.pnpm/@[email protected]_@[email protected][email protected]/node_modules/@react-email/components/dist/index.mjs
./src/vercel-invite-user.tsx
./src/auth.ts

I've been using the canary versions of both @react-email/components & @react-email/render cause they contain fixes that I need to run on edge : #1079

I'm not sure if it's a regression or a problem caused by a different library eg. NextAuth or Next itsself.

It took me a while to create the reproduction because I have attempted:

  1. See if the problem occurs in a NextJS API route. It works without a problem ✅
  2. See if the problem occurs when having the renderAsync function in a RSC. It works without a problem ✅
  3. Have the function in the NextAuth configuration. It fails ❌

Which package is affected (leave empty if unsure)

@react-email/components

Link to the code that reproduces this issue

https://github.com/VaniaPopovic/react-email-repro

To Reproduce

  1. pnpm install
  2. pnpm run dev -> everything works as expected
  3. pnpm run build it fails with the aformentioned error

Expected Behavior

For it to render the email without a problem

What's your node version? (if relevant)

20.6.1

@VaniaPopovic VaniaPopovic added the Type: Bug Confirmed bug label Dec 18, 2023
@gleydson
Copy link

gleydson commented Jan 3, 2024

Dude, I have the exact same problem. After installing each component individually and removing the tailwind component this error stopped. :(

@lchenneberg
Copy link

Dude, I have the exact same problem. After installing each component individually and removing the tailwind component this error stopped. :(

Thanks for this, it on my side still not building. Maybe your solution will help

@kyb3r
Copy link

kyb3r commented Mar 24, 2024

Same problem, unusable on edge runtime

@andrewdoro
Copy link

andrewdoro commented Mar 30, 2024

You can use this hack until the PR is merged. In unstable_allowDynamic replace with the path that you get from the error. This is for the middleware, if you have for example a custom verification email and using auth.js.

export const config = {
  matcher: ["/business/:path*", "/join"],
  unstable_allowDynamic: [
    "**/node_modules/.pnpm/@[email protected][email protected]/**", // use a glob to allow anything in the function-bind 3rd party module
  ],
};

@maccman
Copy link

maccman commented Apr 14, 2024

We're running into the same issue. It's unusable on the edge.

We are rendering emails through inngest.

@maccman
Copy link

maccman commented Apr 14, 2024

I managed to figure out a work around by uninstalling react-email/components and just using the individual packages. I'm fairly sure it's the tailwind package that's causing the issue.

To the maintainers of this project: I really would fix this one because it is extremely common to use this package in an edge environment. Typically you're sending emails from a job queue like ingest and the only way that ingest is going to work is if it's streaming and so it needs to be in an edge environment.

So I would really give this one some attention. Just my two cents.

@jschuur
Copy link

jschuur commented Apr 15, 2024

I wonder if the new engine for Tailwind will just magically fix it because it's such a big rewrite.

@goodgiftdesign
Copy link

I got similar issue I fix it by adding this to my middleware

  unstable_allowDynamic: [
    "**/node_modules/@react-email*/**/*.mjs*",
  ],

@Carduelis
Copy link

Hey there!

unstable_allowDynamic did not help me, although I figured out the way to fix it:

  1. I followed this guide of next-auth@v5 https://authjs.dev/getting-started/migrating-to-v5#edge-compatibility
  2. But Isolated events from the config, keeping sendEmail function inside auth.ts file, but with no import to the middleware.

Not sure, if events property is important to be in middleware.

@danny460
Copy link

Hey there!

unstable_allowDynamic did not help me, although I figured out the way to fix it:

  1. I followed this guide of next-auth@v5 https://authjs.dev/getting-started/migrating-to-v5#edge-compatibility
  2. But Isolated events from the config, keeping sendEmail function inside auth.ts file, but with no import to the middleware.

Not sure, if events property is important to be in middleware.

Same problem using next-auth@5. Your solution helped, thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging a pull request may close this issue.