22

Before Google Chrome update I saw source map files at Chrome Devtools on Network tab. Now, after update to version 43.0.2357.134 m I don't see them.

Maybe my code is wrong? Or it's done intentionally to hide those source maps?

Viacheslav Kondratiuk
  • 8,493
  • 9
  • 49
  • 81

3 Answers3

37

There is a way to get this information by searching for "map" in

chrome://net-internals/#events

chrome://net-internals/#events

Sergey
  • 1,608
  • 1
  • 27
  • 40
Frison Alexander
  • 3,228
  • 2
  • 29
  • 32
6

This was a side-effect of fixing bug 362913 which was a feature request being tracked in issue 465032.

If you have a need for seeing the map files then please file a new issue for it and explain the use-case for why you need it.

Garbee
  • 10,581
  • 5
  • 38
  • 41
-1

If the source map worked, in dev tools:

  1. The name of the source map file is at the end of your minified source file: enter image description here
  2. When you open a source file ([Cmd + O] or [Cmd + P]) by definition that means that it could be mapped, and you can see from which file at the bottom of the source editor: enter image description here
Jérôme Beau
  • 10,608
  • 5
  • 48
  • 52