I have the following error on my single page app:
http://screencast.com/t/sEYhyowXTqxR
Therefore the page looks ugly.
My bundleconfig.cs I havent modified it:
public static void RegisterBundles(BundleCollection bundles)
{
bundles.IgnoreList.Clear();
AddDefaultIgnorePatterns(bundles.IgnoreList);
bundles.Add(
new ScriptBundle("~/scripts/modernizr")
.Include("~/scripts/modernizr-{version}.js"));
bundles.Add(
new ScriptBundle("~/scripts/vendor")
.Include("~/scripts/jquery-{version}.min.js")
.Include("~/scripts/bootstrap.min.js")
);
bundles.Add(
new StyleBundle("~/Content/css")
.Include("~/Content/ie10mobile.css") // Must be first. IE10 mobile viewport fix
.Include("~/Content/bootstrap.min.css")
.Include("~/Content/bootstrap-responsive.min.css")
.Include("~/Content/font-awesome.min.css")
.Include("~/Content/styles.css")
);
}
and my VS: (everything looks fine to me)
http://screencast.com/t/TQFAPCEsV
Update:
This happened when I changed debug mode to false on web.config, when debug mode is true the webpage renders fine and no error is shown on the network tab