So for example instead of this:
bundles.Add(New ScriptBundle("~/bundles/jquery").Include(
"~/jquery-2.1.1.min.js"
))
have something like:
bundles.Add(New ScriptBundle("~/bundles/jquery").Include(
$"{apiBaseUrl}/jquery-2.1.1.min.js"
))
Provided that api endpoint is hosting that js file, which it is. (api serves like locally hosted cdn).
Right now this fails with:
"Only application relative URLs (~/url) are allowed."
I wonder if there is a way to include the file living outside of the solution at all?
Thanks for any help.