Jacob Ebey

Results 53 comments of Jacob Ebey
trafficstars

Check that the component is making it onto your page. If it's not, the first thing to check is what the value of NODE_ENV is when you run. If it's...

This is a known issue and is in Cloudflare's hands to get Wrangler@v2 to support additional watch directories: https://github.com/cloudflare/wrangler2/issues/49

Sentry might be doing some global initialization that hangs around and is re-called every time the require cache is purged (i.e every request in dev).

I believe I'm ok with this change. The issue I have is that credentials have cascading effects that are not currently handled in this implementation: https://fetch.spec.whatwg.org/ I'm going to have...

If someone would like to update the emotion example to mirror this chakra example that would be awesome: https://github.com/remix-run/examples/pull/35 Emotion supports SSR with streaming and we should be using their...

@gaearon, friendly ping on this, happy to provide more information if needed. This seems like a common case to me and would love to figure out how to handle this...

Do we need another equivalent of `suppressHydrationWarning` for ``?

Take the example code-base and assume everything except these lines are hidden behind framework abstractions: ```tsx setCount(count + 1)}>Click me ``` In this case, the underlying "framework abstractions" never actually...

Is there a reason we have to recreate the whole DOM for a suspense boundary that re-renders in a suspended state? Seems to me like that should go through the...

This seems bad for SEO on second thought, but let's talk about it.