Source map errors - Firefox Developer Tools 编辑

Source maps are JSON files providing a way to associate transformed sources, as seen by the browser, with their original sources, as written by the developer. You can sometimes encounter problems working with source maps.  This page explains the most common problems and how to fix them.

Note: If you're new to source maps, you can learn more about them in How to use a source map.

General source map error reporting

If you do see a problem, a message will appear in the webconsole. This message will show an error message, the resource URL, and the source map URL:

Error from invalid JSON

Here, the resource URL tells us that bundle.js mentions a source map, and the source map URL tells us where to find the source map data (in this case, relative to the resource).  The error tells us that the source map is not JSON data — so we're serving the wrong file.

There are a few common ways that source maps can go wrong; they are detailed in the following sections.

Source map missing or inaccessible

The source map resource can be missing or inaccessible.

Source map file is missing

The fix here is to make sure the file is being served and is accessible to the browser

Invalid source map

The source map data can be invalid — either not a JSON file at all, or with an incorrect structure. Typical error messages here are:

  • SyntaxError: JSON.parse: unexpected character at line 1 column 1 of the JSON data
  • Error: "version" is a required argument

Error: "version" is a required argument

Original source missing

An original source may be missing.  You may encounter this when trying to open one of the original sources in the debugger. The message looks a little different in this case:

Debugger source tab showing the error

In this case, the error will also be displayed in the source tab in the debugger:

Debugger source tab showing the error

NetworkError when attempting to fetch resource

A bug in Firefox prevents it from loading source maps for web extensions.

See Bug 1437937: WebExtensions Doesn't Find Source Maps for details.

Source-Map-Fehler: TypeError: NetworkError when attempting to fetch resource.
 Ressourcen-Adresse: moz-extension://c7f0f003-4fcf-49fd-8ec0-c49361266581/background.js
 Source-Map-Adresse: background.js.map

The only workaround is to manually change the map URL to a public one (http://localhost:1234/file.map.js) and start a local webserver at this port.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

词条统计

浏览:145 次

字数:4681

最后编辑:8年前

编辑次数:0 次

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文