Good day.
In the index.html.twig file I have
{% block javascripts %} {% javascripts 'assets/vendor/jquery/dist/jquery.min.js' 'assets/vendor/bootstrap/dist/js/bootstrap.min.js' %} <script src="{{ asset_url }}"></script> {% endjavascripts %} {% endblock %} here are the main scripts.
But in another file I would like to insert my own scripts. How can I add them to existing ones?
If it were just
{% block javascripts %} <script src="{{asset(path(...))}}"></script> {% endblock %} you could use {{parent ()}}. But in this case it does not work for some reason.
What should the addition look like?