Currently, app.modulesReady is a promise that resolves when all dynamically imported modules are ready to work with. However, with some setups this could mean that while all dynamically imported modules are ready, initialModules might not be.
The ideally way to solve this would be to add promises even for initially imported modules, and have app.modulesReady resolve when all initially imported and dynamically imported modules are ready.
Currently,
app.modulesReadyis a promise that resolves when all dynamically imported modules are ready to work with. However, with some setups this could mean that while all dynamically imported modules are ready,initialModulesmight not be.The ideally way to solve this would be to add promises even for initially imported modules, and have
app.modulesReadyresolve when all initially imported and dynamically imported modules are ready.