In GWT , I have created two different projects,after compilationone is creating *.cache.html where else other one creating *.cache.js .Please assist why it is happening and where to config thess things.
1 Answer
In your *.gwt.xml file you can add a linker.
The standard linker is the xsiframe, which generates a *.cache.js file.
The std linker generates *.cache.html file.
Change it by editing the value of name in your *gwt.xml file:
<add-linker name="xsiframe" />