When using Components in UI5 apps I can see a stray GET request each time the application is loaded looking for Component-preload.js in the app directory.
There is a little bit of explanation on preloading in the SDK help (but not much). From what I can gather: library pre-loading is something thats only applicable to the SAP-provided UI5 libraries. Our own code can't execute till the UI5 libraries are loaded anyway
I've tried setting data-sap-ui-preload="async" (sync is the default); but then UI5 won't load. Interestingly if I set sap-ui-preload=auto as a url query string parameter; the app seems to load normally (sync) and there is no stray GET on the Component-preload.js file.
Does anyone have any further information on pre-loading and why there is a GET request on this file and the best way to stop it.
If you also know how to stop all the message bundle GET's that would be interesting to know as well. ;-)