Found a strange but working solution (maybe it will be useful to someone): In the router.js file, you first need to preload the module synchronously (before const routes = [...]):
import ('microfront/page1').catch(...);
And then specify the route component as defineAsyncComponent:
{
id: "page1",
path: "/page1",
name: "Page 1",
component: defineAsyncComponent({
loader: () => import("microfront/page1"),
timeout: 10000,
loadingComponent: Loading,
errorComponent: ErrorPage,
})
}