Just a small comment on script tag ordering. There really is a need to be able to control the ordering of script tags. For example, moment.js has to be loaded before moment-timezone-with-data.js
I also have custom scripts which have to load before (sometimes after) certain scripts. Currently, the simple solution is to rename the script filename like how I would in a Linux “init.d”. For example:
01_moment.js 02_moment-timezone-with-data.js
But this is weird since I should have already been able ot do the reordering in Bootstrap Studio itself.
I tried disabling the script files and putting new script tags in a custom code right after the body tag, but no sale (they’re simply not included in a preview or export).
Just wishing…