Google Chrome “Failed parsing SourceMap” : css.map (Web Essential)

前端 未结 1 995
悲&欢浪女
悲&欢浪女 2020-12-24 06:53

Visual Studio 2013 UP5 + Web Essential\'s (v. 2.6.36) generated css.map files are invalid in \"Google Chrome\", however it is valid in \"Firefox\". Due to this it became imp

相关标签:
1条回答
  • 2020-12-24 07:18

    Problem is that WebEssentials saves files in UTF8 with BOM, but Chrome is not able to open these files as .map files.

    As a temporary fix, you can go to your .map file in Visual Studio and save it as a Unicode (UTF-8 without signature) or US-ASCII using

    File -> Advanced Save Options -> Unicode (UTF-8 without signature) or US-ASCII.
    

    It is possible that on changing the associated .css file you will have to repeat this process. However, when I tested adding some rules to .css the correct format was preserved for the .map file.

    I reported this on WebEssentials GitHub: Issue 1993

    And there are some other reports:

    • Issue 1994
    • Issue 1977
    0 讨论(0)
提交回复
热议问题