On Thursday, February 11, 2016 at 2:12:52 PM UTC+1, Rocco De Angelis wrote: > > Hi All, > > somebody an idea how to disable code splitting in GWT so that all > generated code will be put in the cache.html. > This makes it easier for me to debug the code in chrome (Yes I will debug > the js code :) ) > > I found this: > http://stackoverflow.com/questions/3802782/how-do-i-disable-code-splitting-in-gwt > But "-draftCompile" doesn't work. Any other ideas? >
To disable GWT.runAsync, pass -XnocodeSplitting (or -XdisableRunAsync for older versions of GWT) to the compiler. Run the compiler with "-??" to see all options (including "hidden" ones) -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/google-web-toolkit. For more options, visit https://groups.google.com/d/optout.
