Akayy

Results 66 comments of Akayy

I was studying the source-dom mapping techniques and noticed Johnson's vue-preview (previously @volar/preview) https://twitter.com/johnsoncodehk/status/1507024137901916161 is also using a similar solution of using vNode* events https://github.com/johnsoncodehk/vue-preview/blob/master/packages/core/bin/vite.js#L35, so this approach is promising.

Also would be good to have this exposed as a config (for eg, `autoImportAPIs`), so that presets can be extended by users as required. These presets can be those shipped...

Actually, just read this about reducer at this blog - https://slashgear.github.io/react-redux-pitfalls-and-best-pratices/#keep-the-immutability-and-readability-of-your-reducers ![image](https://user-images.githubusercontent.com/73772701/136781531-07c0a806-3e91-4517-87b2-b856c75f1f5b.png) Note "keeping the same references to the objects that haven't changed" in the above extract. So, wouldn't a...

I'm wondering if the shallow-compare is there primarily to support "connecting" to multiple state objects? I did create another issue regarding connecting to multiple state object (https://github.com/davej/js-redux/issues/17), but wondering if...

I have another Vuetify/Unocss based sample app, that uses `useImage()` and `v-img` (as per docs - https://image.nuxt.com/usage/use-image) instead of NuxtPicture & NuxtImg, and it works fine in netlify deploy. My...

Yeah something seems to be missing.. Hope this gets into the maintainers radar soon :-)

I tried deploying nuxt image's [playground](https://github.com/nuxt/image/tree/main/playground) on netlify. While it worked fine when previewing locally, on netlify it didn't work. Looks like there needs to be some nitro-related additional setup...

Thanks @cfab. It helps when building the app using the `build` command (SSR), but doesn't seem to work when prerendering by using the `generate` command (SSG).

Thanks @cfab, I will do some deep testing to understand and share my samples with the community 👍🏽