Bundling in MVC for files on remote server
Hi,I have my assets on remote server , on some other server than my application server.
How Can i create the bundles for those files and can use in my MVC Application?
public static void RegisterBundles(BundleCollection bundles)
{
bundles.Add(new ScriptBundle("~/bundles/jquery").Include(
"~/Scripts/jquery-{version}.js"));
}
protected void Application_Start()
{
BundleConfig.RegisterBundles(BundleTable.Bundles);
}