dwjohnston
dwjohnston

Reputation: 11771

"sourceMaps is null" in Firefox Developer Edition

In the debugging window of the developer console - I can see all my javascript resources listed, but in of them it just says sourceMaps is null.

The resources I'm trying to fetch are some minified jquery, and unminified, but consolidated javascript. The javascript does not contain a sourcemaps comment.

Any suggestions for how I'd resolve this?

Upvotes: 11

Views: 977

Answers (1)

Nabeel
Nabeel

Reputation: 1001

I had the same issue. I resolved it by updating the about:config settings

Open about:config

Search for devtools.source-map.client-service.enabled

The value of this option should be true. enter image description here

Upvotes: 4

Related Questions