I am aware of why GWT emits app logic in a .cache.html file.
But what if I knew my system would always be supplying .js files uncompressed?
Is there any way to make GWT output all the app logic in one .js file, or do I need to parse the .html file myself to achieve this?
You can use the
xs(deprecated, doesn’t support DevMode) orxsiframelinkers:For non-browser environments, you’ll have to provide a custom linker. There’s one for Node.js at https://github.com/cretz/gwt-node for instance.