In previous versions of Bootstrap, the BundleConfig in MVC 5 was:
bundles.Add(new ScriptBundle("~/bundles/bootstrap").Include(
"~/Scripts/bootstrap.js",
"~/Scripts/respond.js"));
And the ..\Content folder had the file: bootstrap.css
Now, after updating to Bootstrap version 3.3.4 I see the adtl files in the ..\Content folder:
bootstrap-theme.css and bootstrap-theme.css.map
The question is: Should these two files be added to the BundleConfig as follow?
bundles.Add(new StyleBundle("~/Content/css").Include(
"~/Content/bootstrap-theme.css",
"~/Content/bootstrap-theme.css.map",
"~/Content/bootstrap.css",
"~/Content/site.css"));