blob: cab7efca74b4d43fc5c7475143d9e9c0048441b4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
---
title: SourceMap
slug: Web/HTTP/Headers/SourceMap
tags:
- HTTP
- HTTP ヘッダー
- ヘッダー
- リファレンス
- レスポンスヘッダー
translation_of: Web/HTTP/Headers/SourceMap
---
<p>{{HTTPSidebar}}</p>
<p><strong><code>SourceMap</code></strong> <a href="/ja/docs/Web/HTTP">HTTP</a> レスポンスヘッダーは、生成されたコードを<a href="/ja/docs/Tools/Debugger/How_to/Use_a_source_map">ソースマップ</a>にリンクし、ブラウザが元のソースを再構成し、再構成されたオリジナルをデバッガに提示できるようにします。</p>
<table class="properties">
<tbody>
<tr>
<th scope="row">ヘッダータイプ</th>
<td>{{Glossary("Response header")}}</td>
</tr>
<tr>
<th scope="row">{{Glossary("Forbidden header name")}}</th>
<td>いいえ</td>
</tr>
</tbody>
</table>
<h2 id="構文">構文</h2>
<pre class="syntaxbox">SourceMap: <url>
X-SourceMap: <url> (deprecated)
</pre>
<h3 id="ディレクティブ">ディレクティブ</h3>
<dl>
<dt><code><url></code></dt>
<dd>(リクエスト URL に対する) 相対パスまたはソースマップファイルを指す絶対 URL</dd>
</dl>
<h2 id="例">例</h2>
<pre>SourceMap: /path/to/file.js.map</pre>
<h2 id="仕様">仕様</h2>
<table class="standard-table">
<tbody>
<tr>
<th scope="col">仕様書</th>
<th scope="col">タイトル</th>
</tr>
<tr>
<td><a href="https://docs.google.com/document/d/1U1RGAehQwRypUTovF1KRlpiOFze0b-_2gc6fAH0KY0k">Draft document</a></td>
<td>Source Map Revision 3 Proposal</td>
</tr>
</tbody>
</table>
<h2 id="ブラウザの互換性">ブラウザの互換性</h2>
<p class="hidden">このページの互換表は構造化データから生成されます。データに貢献したい場合は <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> をチェックし、プルリクエストを送信してください。</p>
<p>{{Compat("http.headers.SourceMap")}}</p>
<h2 id="関連情報">関連情報</h2>
<ul>
<li><a href="/en-US/docs/Tools/Debugger/How_to/Use_a_source_map">Firefox Developer Tools: using a source map</a></li>
</ul>
|