asp.net-mvc – 如何调试Minification失败 返回未最终内容

前端之家收集整理的这篇文章主要介绍了asp.net-mvc – 如何调试Minification失败 返回未最终内容前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我使用Asp.net MVC 4 bundler来捆绑和缩小我的Css文件

YSlow在下面显示错误

/* Minification Failed. Returning unminified contents.
    (1442,26): run-time error CSS1019: Unexpected token,found ':'
    (1442,26): run-time error CSS1042: Expected function,26): run-time error CSS1062: Expected semicolon or closing curly-brace,found ':'
     */

这是我的捆绑代码

bundles.Add(new StyleBundle("~/Content/css").Include(
        "~/Content/site.css","~/Content/fullcalendar.css","~/Content/jquery.dropdown.css","~/Content/jquery.tagit.css","~/Content/tipsy.css"
        ));

现在我怎么知道哪个css文件导致了这个问题?我如何调试找到导致问题的行? site.css是我写的唯一的css文件

解决方法

如果有人仍在处理这样的问题。

在上面的例子中:(1442,26)1442是行号,26是字符偏移量。然而,为了确切地说,您需要删除指出此错误的整个注释:

/* Minification Failed. Returning unminified contents.
    (1442,found ':'
     */
原文链接:https://www.f2er.com/aspnet/252387.html

猜你在找的asp.Net相关文章