-1

We have an issue on the production environment. The production script is minified. So, when we debug using Chrome we cannot get hold of the actual variables. But we can see the values in the minified variables. Is there any plugin or some option that will still give us a non-minified view on any environment so it will be easier to fix instead of guessing about the values in minified variables.

john doe
  • 9,220
  • 23
  • 91
  • 167
  • 1
    Take a look at [Source Maps](http://stackoverflow.com/questions/21719562/javascript-map-files-javascript-source-maps). – James Thorpe Dec 23 '15 at 16:28

1 Answers1

2

The typical solution for this problem is to use source maps.

enkrates
  • 626
  • 1
  • 6
  • 17