INTRODUCTION

A D8 / D9 module focused on javascript loading improvements

Traditionnally, all the javascript of a page is loaded during page load.
Best case scenario, it's loaded using defer (so towards the end).
And using async is usually a mess as it does not manage dependancies between scripts.

This modules allows to see the javascripts that are loaded on a page.
You can then decide to remove them if they are not useful.
Or you can decide to load them at a later stage if they are not on the
critical path of rendering.