Currently, I am working on an asp.net application that utilizes a script manager in the master page. My goal is to load all scripts related to the script manager from a CDN, so I have set EnableCDN="true" in the script manager.
<asp:ScriptManager runat="server" EnableCdn="true" />
However, I have observed that each script is loaded separately, leading to an increase in HTTP requests. Is there a way to bundle all these scripts into one single file?
Has anyone managed to achieve this bundling of CDN-loaded scripts into a single JS file in asp.net (not MVC)?
Here is a snapshot of all JS files currently being loaded individually: https://i.sstatic.net/yzAJq.png