Manuk
Manuk

Reputation: 301

Is there anyway to improve the Javascript Built Apps's web page loading time?

I found the first web page loading time for CN1 Javascript Built taking too long, need about 2 minutes.

I attached the Chrome's network loading screen shot, found the classes.js is the most heavy page, possible to zip it?

Second, there is 2 theme files that downloaded sequentially, is it possible for them to load at the same time?

enter image description here

Kindly advice.

Upvotes: 1

Views: 27

Answers (1)

Shai Almog
Shai Almog

Reputation: 52760

Normally I would answer that you can look at the performance section of the developer guide but the relevant sections there relate to reducing the theme.res size which seems pretty small in your case.

The largest portion in your code is the class files so I'm guessing that the best way to reduce them is to further reduce dependencies so the obfucator can remove more dead code. Keep in mind that the classes.js file is cached and can be deployed via CDN's such as cloudflair to improve download speeds. It can be served in a gzipped form as well which is a part of the CDN repertoire.

Upvotes: 0

Related Questions