From e6344eca4a94e15a6c8c7e9d5b8bcfff59fd6654 Mon Sep 17 00:00:00 2001 From: Vadim Makeev Date: Thu, 12 Dec 2024 14:32:08 +0100 Subject: [PATCH] Apply suggestions from code review Co-authored-by: Brian Smith --- files/en-us/glossary/source_map/index.md | 1 + 1 file changed, 1 insertion(+) diff --git a/files/en-us/glossary/source_map/index.md b/files/en-us/glossary/source_map/index.md index 36fd273bf7bee36..0a71230ea1ebc29 100644 --- a/files/en-us/glossary/source_map/index.md +++ b/files/en-us/glossary/source_map/index.md @@ -15,6 +15,7 @@ Code executed by the browser is often transformed in some way from the original - To use languages that browsers don't support, like {{Glossary("TypeScript")}} or [Sass](https://sass-lang.com/). In these situations, debugging the original source is much easier than the source in the transformed state that the browser has downloaded. +Browsers detect a source map via the {{HTTPHeader("SourceMap")}} HTTP header for a resource, or a `sourceMappingURL` annotation in the generated code. ## Example