Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(web-server): disable gzip compression
With big files, the gzip compression is causing to serve only parts (chunks) of a file, as browser probably cancels the request at some timeout. See #778 for a discussion. I saw similar issues on AngularJS build couple of times too. Doing gzip compression on the fly is not a good idea. The compress module is more likely to be removed from express/connect. If we wanna do gzip compression, we should probably do it as a preprocessor, so that it happens only once per file.
- Loading branch information