Omar Mashaal

Results 35 comments of Omar Mashaal

It seems to be requesting the wrong version of @types, v18.0.6 seems to work. https://esm.sh/v90/@types/[email protected]/client~.d.ts Latest npm version: https://www.npmjs.com/package/@types/react-dom/v/18.0.6

It looks like this is fixed in the upcoming version of React. The style tags are hoisted into the head automatically with the new head/inject to stream feature. Testing in...

Should be fixed with https://github.com/exhibitionist-digital/ultra/commit/ff26246bc3e2183f10c24015f41e8c7d105c5ed2

Ultra 2.1.0 has an option to inline server dynamic imports while still retaining client side dynamic usage. Both with `React.lazy` and `await import`. If this helps anyone else: https://github.com/exhibitionist-digital/ultra/pull/195

Thanks, I might take you up on the advice, are you on our Discord server? Supporting edge environments in one of our main goals

@ascorbic - we are almost there, netlify dev works, but we are running into an import_map issue. https://github.com/netlify/edge-bundler/issues/108

It's worth noting that all local ESM is transformed on every request in `dev`. This would not provide worthwhile results? In all prod environments (Deno, Deno Deploy, and eventually Vercel),...

I think this is expected. Our Ultra vendoring only vendors for front end. We can get --no-remote working by running... ```sh deno task build cd .ultra deno vendor ULTRA.js deno...

Thanks @monsieurpigeon - documentation on deployment is next on my list. Ultra runs on oak ultimately, and I see there is a `vercel-deno` example for oak in their repo already....