I am using Kendo UI
in a MVC 4
project, I made the settings in BudleConfig:
bundles.Add(new ScriptBundle("~/bundles/kendo")
.Include("~/Scripts/kendo/2013.2.918/kendo.all.min.js")
.Include("~/Scripts/kendo/2013.2.918/kendo.aspnetmvc.min.js")
);
bundles.Add(new StyleBundle("~/bundles/css")
.Include("~/Content/kendo/2013.2.918/kendo.common.min.css")
.Include("~/Content/kendo/2013.2.918/kendo..metronic.min.css")
);
No Html:
@Styles.Render("~/bundles/css")
@Scripts.Render("~/bundles/jquery")
@Scripts.Render("~/bundles/kendo")
Running in place it works normally, but when I upload it to the server it loses the images
Failed to load resource: the server responded with a status of 404 (Not Found) http://meu.ip/bundles/Metro/loading-image.gif
Any specific reason why this is happening?