You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 4, 2019. It is now read-only.
It would be nice for WebWorks to support locally compressed files, by example: website requests styles.css there is no such file in package, but there is a file called styles.css.gz, which is filtered through ZipInputStream and returned to browser. This would drastically lower package sizes, and would increase loading times on older phones (flash storage is slower than memory and processor).
The text was updated successfully, but these errors were encountered:
I think that it can be also solved, by adding Content-Encoding: gzip, when in incoming headers there is AcceptEncoding: gzip. Then there is no need to decompress it on the fly by framework itself (it will be done much quickier by native browser functions).
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
It would be nice for WebWorks to support locally compressed files, by example: website requests styles.css there is no such file in package, but there is a file called styles.css.gz, which is filtered through ZipInputStream and returned to browser. This would drastically lower package sizes, and would increase loading times on older phones (flash storage is slower than memory and processor).
The text was updated successfully, but these errors were encountered: