Zack Jackson
Zack Jackson
- Added a new option nextSupport in the plugin constructor that enables Next.js specific logic - Added a new utility function importDelegatedModule that handles importing modules from remote containers in...
use less hacks to emit remote containers that are versioned. Now, rather apply another instance of module federation to generate a new resource where we can rename it as we...
dashboard-plugin/client-version is functional, but needs to be improved. Functions need to be more resilient - code needs to be DRYed out further We should consider Template from webpack to assist...
Hi, I've recently developed a better solution to loading remote scripts. Consider require.loadChunk or webpack_require.l(url,event,id) This will leverage webpacks own chunk loader for loading remote containers the same way import(remote/module)...
workaround here: https://github.com/module-federation/nextjs-ssr/pull/17 global of remote config from process.env and from other remotes needs to be merged together all the time, then merge runtime remotes that are loaded incase there's...
Configure module federation plugin directly on next config, set runtime to false in plugin - this will generate a self contained webpack runtime for the remote container. For sharing react...
Currently I support a single string syntax as the input. Remote: global@url Adding support for a promise new promise value would enable managed modules and other at runtime decisioning ```...
Right now, the plugin supports a single remote string like: `{remote:remote@http://}` Add support for an array of values where on `catch` - webpack will try the next value in the...
It would be nice to have the following functionality, providing no additional DOM elements when hydrating. Not sure if its possible but thought id ask. ```js if (isVisible || mode...