huw
huw
I wonder if the solution would be to add units to the settings (either directly in the text field or with a split input dropdown). I can imagine that being...
I realised I didn’t post cross-post here last time—I have a [pretty hacky solution](https://github.com/getsentry/sentry-javascript/issues/5610#issuecomment-1435484464) for Cloudflare Workers with Toucan.
I’ve updated [my Cloudflare Workers Gist](https://gist.github.com/huw/e6749ea2e205e0179d0c87c3a9859f9e) for Toucan v3.2.0 and Remix v2. It’s a _lot_ more complicated & hacky now thanks to Remix v2, but still very possible. Please reply...
Mine was broken with the examples for `useSelect`, but [this workaround](https://github.com/adobe/react-spectrum/issues/3787#issuecomment-1421083421) from #3787 fixed it fine: ```tsx ... ``` This is in a Remix app where we hydrate the entire...
Now that Miniflare v3 (with workerd) is the [default dev command in Wrangler](https://blog.cloudflare.com/wrangler3/), this issue is more important to robustly solve. To summarise the above: The two packages that are...
@dario-piotrowicz FWIW this is just a change to the Workers template, not any of Remix's actual code. Remix is fully compatible with Workers today, users just need to copy the...
@MichaelDeBoey Nope, still need to add an additional handful of files ([see solution here](https://github.com/remix-run/remix/pull/4676#issuecomment-1423663413))—the new config options helped a tonne though and ultimately unblocked that work ❤️. The most idiomatic...
Yep, I weighed in on that debate [here](https://github.com/remix-run/remix/pull/4198#issuecomment-1323611620) last time it came up (most of my points still apply, but the situation has improved a bit with the new config...
Add the following to `remix.config.js`: ```js { serverDependenciesToBundle: [/^(?!(__STATIC_CONTENT_MANIFEST)$).*$/u], } ``` This will bundle everything except `__STATIC_CONTENT_MANIFEST`. It’s hacky and using an unnecessarily expensive regex, but it works correctly now.
@luixo Thank you! [In my case](https://github.com/vasturiano/react-force-graph/pull/435#issuecomment-1537525268), an upstream dependency updated a type I was importing to add a type parameter, meaning that I was attempting to augment a generic type...