I would like to customize the output of bundle script injection somehow or disable it at all, but seems it is not possible?
Current result
HEAD
<body>
BODY
<script src="myModule.js"></script>
<script src="myModule1-adb87986.js"></script> <<< caused by dynamic import
<script src="myModule2-c25eb9cc.js"></script> <<< caused by dynamic import
</body>
</html>
What I need:
HEAD
<body>
BODY
<script>
systemJsLoader.load('myModule.js');
</script>
</body>
</html>
I would like to customize the output of bundle script injection somehow or disable it at all, but seems it is not possible?
Current result
What I need: