Why does the asp.net mvc application now request .map files when I check Fiddler

When I started using Fiddler, I began to notice that my ASP.NET MVC application now makes requests for CSS map files.

Does anyone know how I can stop this. Here is the configuration of my package:

        bundles.Add(new StyleBundle("~/bundles/css").Include(
                "~/Content/css/*.css"
                ));
+4
source share
1 answer

I think it is looking for a .map file, for example

bootstrap-theme.css.map
bootstrap.css.map

There is more information about the map here.

+3
source

Source: https://habr.com/ru/post/1535777/


All Articles