Make ASP.NET bundling specify media=screen for CSS bundle

后端 未结 8 1236
情深已故
情深已故 2020-12-23 13:47

I\'m just trying out ASP.NET 4.5 bundling and minification, and ran into an issue.

I\'ve got around 10 css files, of which 2 were originally referenced in the layout

8条回答
  •  無奈伤痛
    2020-12-23 14:22

    So complicated, why not to use:

    bundles.Add("~/Css/site.css", b => b.Media = "screen");
    

    ?

提交回复
热议问题