I'm currently in the process of learning a new framework "SAPUI5". One of the things I'm wondering is, what's the difference between embedding a library like "sap.m" in the manifest.json vs. in the index.html?
manifest.json:
"dependencies": {
"minUI5Version": "1.93",
"libs": {
"sap.ui.core": {},
"sap.m": {},
"sap.f": {},
...
}
},
index.html:
<script>
...
data-sap-ui-libs="sap.m, sap.f, ..."
...
</script>