Fran Dios
Fran Dios
@brillout Ah right, that could be useful to make things work with different 3p libraries. I've seen a bunch of libraries calling `Buffer` at the top level and crashing in...
@brillout yep, it's here: https://github.com/facebook/react/pull/22952 There's also a live demo: https://stackblitz.com/edit/vite-rsc-demo?file=vite.config.js Beware that this approach is still not validated by the React team, it's just an exploration 😅
The plugin developed in [this PR](https://github.com/facebook/react/pull/22952) is not coupled anymore with Hydrogen. Ideally anyone can use that plugin for RSC.
👋 Hi! Thanks for reporting this. We've been talking about this internally and we'll probably make some changes to the SEO component soon. cc @blittle
Hey 👋 I've been trying to reproduce this issue in different scenarios without much luck. Would you be able to provide a minimal reproduction in a repository so that we...
Can you try passing `--legacy-runtime` flag to your dev command? That might give you better errors. Generally speaking, the Oxygen platform is not compatible with Node.js APIs so that, if...
Not sure if this has worked before. What was working was `npx @shopify/cli-hydrogen init`, which uses our cli plugin directly as an executable but we shouldn't probably use this directly....
Can you try with `npm run dev -- --legacy-runtime` and see if it works there? I think this is something that works in [Node.js by default](https://nodejs.org/api/cli.html#ssl_cert_filefile) but not in our...
We are adding a new flag to bypass the network filter in the worker runtime. This should probably work for your use case: https://github.com/Shopify/hydrogen/pull/1882
I can see increased build time in our template from ~500ms to ~750ms, which could also slow down HMR/HDR. However, HMR doesn't break in my tests 🤔 Not sure yet...