files/en-us/web/http/reference/headers/sourcemap/index.md
The HTTP SourceMap {{Glossary("response header")}} provides the location of a {{Glossary("source map")}} for the resource.
The HTTP SourceMap header has precedence over a source annotation (sourceMappingURL=path-to-map.js.map), and if both are present, the header URL is used to resolve the source map file.
SourceMap: <url>
X-SourceMap: <url> (deprecated)
<url>
SourceMap headerThe following response contains an absolute path in the SourceMap header.
HTTP/1.1 200 OK
Content-Type: text/javascript
SourceMap: /path/to/file.js.map
<optimized-javascript>
Developer tools use the source map to reconstruct the original source from the optimized JavaScript returned in the response, allowing developers to debug the original code rather than the format that has been optimized for sending.
{{Specifications}}
{{Compat}}