Anatoliy Kulak

Results 4 comments of Anatoliy Kulak

The only idea I have, is to teach somehow MF plugin, that in shared property `react` should be the one that is already in chunk. But again, I'm not really...

Thank you for your answers, @ScriptedAlchemy. Really appreciate your help. As I understood, you are saying about using splitChunks to group all chunks that were created by module-federation together. Yep,...

Hey. As for me, the easiest solution for this issue is to use the IntersectionObserver API. Just listen to the last slide to get into the viewport, then disable _Next...

@iriepixel Hey, sorry for so long response. something like that ```js const observer = new IntersectionObserver( entries => { entries.forEach(entry => { if (entry.isIntersecting) { controls.disableNext(); } else { controls.enableNext();...