I am importing Ionic into my index.html with this:
<script type="module" src="ionic/ionic/ionic.esm.js"></script>
<script nomodule="" src="ionic/ionic/ionic.js"></script>
On Browser and iOS and even Android Emulator everything works fine. Only on Android Devices I get Failed to load module script: The server responded with a non-JavaScript MIME type of "".
I found one or two questions on SO and issues on GitHub, but no simple solution to my problem..
How can I resolve the error?