I have urls of external js and css like below. These urls are apis not related to the main application.
http://localhost/media/10/custom.js, http://localhost/media/11/custom1.js, http://localhost/media/12/custom2.js, http://localhost/media/13/custom3.js, http://localhost/media/14/custom4.js I want to do bundle and minify these url files
Dim urls(5) as string urls(0)=http://localhost/media/10/custom.js urls(1)=http://localhost/media/11/custom1.js urls(2)=http://localhost/media/12/custom2.js urls(3)=http://localhost/media/10/custom3.js urls(4)=http://localhost/media/10/custom4.js BundleTable.Bundles.Add(New ScriptBundle("~/Content/js").Include(urls)) BundleTable.EnableOptimizaions=True I am getting the below error:
the URL '....' is not valid. Only application relativenURLs (~/url) are allowed.
How can I bundle the external files?