Shu Ding

Results 403 comments of Shu Ding

> This appears as a render glitch most noticeable when the layout is using a custom font that also needs to load. That's dev only as we ditch all the...

Sounds great, happy to accept a PR :)

Note that `@next/react-dev-overlay` is included in dev mode only so this won't affect production.

Hey! There're two issues with this, one is that the unused export wasn't properly tree-shaken where we will try to address. > This can lead to developers accidentally exposing endpoints...

@RhysSullivan That id you saw was for the exposed action (the one you are using inside ``). The other one's id, which isn't used by the client, won't be seen...

Yes @RhysSullivan thanks that’s very helpful, I’ll take a look! But also keep in mind that Server Actions are public API endpoints even though they feel like internal function calls....

As the error message says ``` 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 ``` This is expected as https://unpkg.com/[email protected]/_root.js has...

I think on the Next.js side, we will try to compile `Function('return this')()` into non-dynamic code (`globalThis`) in the Edge Runtime. In the meantime, this seems like also a bug...