I have different scripts on the Internet at the URL:
ExternalUrl / in / general / JS / script1.js
ExternalUrl / in / general / JS / script2.js
ExternalUrl / inter // generic / JS / script3.js
ExternalUrl / inter // generic / JS / script4.js
ExternalUrl / inter // generic / JS / script15.js
How can I create a javascript package for external javascript not in my solution?
bundles.Add(new ScriptBundle("~/bundles/inte").Include(
"http://url/inte/common/js/script1.js",
"http://url/inte/common/js/script2.js",
"http://url/inte/common/js/script2.js));
source
share