I was just editing my index.html to have the folowing <script src="build/vendor.js"></script> and noticed that in the example found here https://github.com/ionic-team/ionic/blob/master/CHANGELOG.md it shows that <script src="cordova.js"></script> is actually in the <body> and not <head> so should i move mine to <body> as well?
It has to be in
<head>
here it in body http://blog.ionic.io/announcing-ionic-3-5-2/
...
<body>
<!-- Ionic's root component and where the app will load -->
<ion-app></ion-app>
<script src="cordova.js"></script>
<!-- The polyfills js is generated during the build process -->
<script src="build/polyfills.js"></script>
<!-- all code from node_modules directory is here -->
<script src="build/vendor.js"></script>
<!-- The bundle js is generated during the build process -->
<script src="build/main.js"></script>
</body>
...
This is the index.html of newly created projects:
Here it is in <head> as well.
Probably makes not much difference though.