Nav
Nav

Reputation: 4540

cache.html size in gwt and Slow-Loading

in my GWT project when I tested it by firebug I saw the ...cache.html file size is very big (about 700KB) and it cause for slow-loading the project for first time. In my project it can be a problem.

how to prevent size for cache.html in GWT?

Upvotes: 3

Views: 1546

Answers (1)

Jason Hall
Jason Hall

Reputation: 20920

  1. Use Code Splitting to only load what's needed as it's needed.
  2. Use Compile Reports to find out which of your dependencies is causing your code size to be so huge, and (re)move them from the initial download.

Upvotes: 2

Related Questions