ClientDependency in umbraco doesn't include my bundles
问题 Here is where I call the BundleManager: public class MyUmbracoApplication : UmbracoApplication { protected override void OnApplicationStarted(object sender, System.EventArgs e) { //register custom routes RouteConfig.RegisterRoutes(RouteTable.Routes); CreateBundles(); base.OnApplicationStarted(sender, e); } public static void CreateBundles() { BundleManager.CreateCssBundle("css", new CssFile("~/css/rte.css")); BundleManager.CreateJsBundle("js", new JavascriptFile("/assets/js/custom.js")); } }