I'm using Angular8 with UI-Router.
Some of my modules are lazy-loaded using UI-Router Future States
export const futureState = {
name: "app.users.**",
url: "/users",
loadChildren: () => import("../user.module").then((m) => m.UserModule)
};
Browsing to /users causes the UserModule to be fetched over the network and loaded. (as part of a file produced by WebPack)
Is it possible for the initial page to trigger the lazy-load the UserModule, so that when /users is visited the UserModule has already been loaded?