When running my project locally, or if it's running in a production like environment jawr compresses my javascript files so when I run developer tools and try and debug those files, I can only view the compressed file. How can I make it so I can view the original, uncompressed javascript files?
How to debug in developer tools when scripts compiled with jawr?
565 Views Asked by Jeremy W At
1
There are 1 best solutions below
Related Questions in JAVASCRIPT
- Angular Show All When No Filter Is Supplied
- Why does a function show up as not defined
- I count the time the user takes to solve my quiz using Javascript but I want the same time displayed on another page
- Set "More" "Less" font size
- Using pagination on a table in AngularJS
- How to sort these using Javascript or Jquery Most effectively
- how to fill out the table with next values in array with one button
- State with different subviews
- Ajax jQuery firing multiple time display event for the same result
- Getting and passing MVC Model data to AngularJS controller
- Disable variable in eval
- javascript nested loops waiting for user input
- .hover() seems to overwrite .click()
- How to sort a multi-dimensional array by the second array in descending order?
- How do I find the fonts that are not loading in a CORS situation ( MoovWeb )?
Related Questions in DEBUGGING
- Eclipse find source file from library
- Debug native code in Android Studio
- Breakpoint "concurrency" in Intellij
- PhpStorm IDE. Collapse custom/debug code
- How does one debug infinite recursion in Haskell?
- Android Studio missing exception stacktrace in Logcat
- java FileNotFoundException wont locate a file in the same project
- How can I debug scala.js unit tests?
- Why Eclipse Debugger does not stop on scoped exception breakpoint (how to stop on handled exception)
- Suggestions for my Selection Sort / Java
- Fortran Debugging
- Debug Excel VSTO add-in when launched by double-clicking existing file
- Starting GDB with interpreter mi via .gdbinit file
- How to print call stack in Swift?
- Preventing threads in Xcode
Related Questions in DEVELOPER-TOOLS
- Are there any debugging tools for the Opera Mini mobile browser?
- Neither .on or .live functions are recognized
- How to look at the Javascript that a page is using?
- Chrome Developer Tools shows favicon 404 error in Brackets LivePreview
- Alternative to using mechanize to fetch data?
- GET document canceled upon first visit (Chrome)
- How to tell why a cookie is not being sent?
- Is it possible to see which srcset image a browser is using with browser developer tools
- Avoid changing value in client using developer tool
- Internet Explorer 11 - Declare Javascript variables in developer tools console
- Google Play security alert due to ActionScript and OpenSSL
- Does the Cloud9 has the Syntax automatically?
- Can developers perform optimizations in apk creation using dx tool?
- Developer plugin Wordpress Error instaling Debug bar
- Which block of code will execute faster?
Related Questions in JAWR
- How to debug in developer tools when scripts compiled with jawr?
- Can I bundle a bundle of all javascript .js files?
- jawr - Included file in jsp contains numeric folder that does not exist
- How to actually use JAWR with a library from a CDN
- jawr, webjars, bootstrap, spring mvc - glyphicons not displaying
- Jawr with plain html
- Jawr Spring Annotations Based Sample Configuration
- Jawr CSSServlet throwing StackOverflowError
- Jawr: Is making on bundle wait until another bundle is finished possible?
- Spring boot with jawr not working
- How can I minimize (on-the-fly) dynamically generated CSS inside servlet?
- How do I stop Jawr processing some parts of CSS files?
- ExtJS with Jawr appears to be messing with encoding settings
- Integrating Jawr with a CDN (CloudFront)
- JAWR overrides load of unbundled files
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Information on debug and production modes related to jawr can be found here
From the link:
While running in production mode, you may view your bundles in debug mode by using jawr.debug.overrideKey. This can be very helpfull when you need to debug issues in a production environment. Simply append overrideKey=(jawr.debug.overrideKey value) to the end of the url. Now your production bundles will be exploded; but only for that request. You may also view individual css and js files by adding the overrideKey to the end of the request.So in order to debug in production or locally you would add overrideKey=debug to the end of your url.
url.com/something?overrideKey=debug