Hello,
I’m trying to modify a script tag in Bootstrap Studio to include additional attributes like async
and defer
. For example, I need to change this:
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyB6Ts0miE7PMJLYzpgnnbJqynmAwxhzQGc&callback=initMap&libraries=marker"></script>
to this:
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyB6Ts0miE7PMJLYzpgnnbJqynmAwxhzQGc&callback=initMap&libraries=marker" async defer></script>
Is there a way to add attributes like async
and defer
to the script tag within Bootstrap Studio? How can I do it?
Thank you!
Francisco