I am finding my way in the world of Webpack 5 module federation. There is a lot of good material and examples, like this and this.
However, all examples I found are built inside single Git repos, often using npm workspaces and/or nested package.json files.
Since I am going to implement module federation among multiple Git repositories, I'd like to see an example that does exactly that. Has anyone spotted such example?
I assume that the job is done in the definition of the remotes; I have seen some cases where the remote is defined through an URL, but in my case all remotes will be known at build time, so I guess an URL is overkill. Am I right?