Offline linker performs the task of generating a valid cache manifest file when you compile your GWT application.
Static resources that are needed (outside of the compile unit) require specific inclusion. These files would typically be index.html, css files or any resources not included within the GWT application. These files are included through the cachemanifest_static_files property added to your module.gwt.xml file. The path is relative to manifest, so include a full path if you include resources outside of the apps path.
{@code }
To activate the linker, the following configuration is included in your GWT module definition (module.gwt.xml file) as follows:
{@code }
Finally, include the cache manifest file within the html page that loads your GWT application, as follows:
{@code .... }
@author Grant Slender