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
An example of mine: a javascript-file that was 485kb before compression is 299kb after compression with brotli.js. The same file is 94.4kb when compressed 'on-the-fly' with ngx_brotli. I'm using quality 11 compression.
Steps to reproduce would be to install ngx_brotli on an nginx server, and compare file-sizes with the result of the following:
var fs = require('fs') var brotli = require('brotli') var result = brotli.compress(someFile, { quality: 11 }) fs.writeFile(someDir, result)
The text was updated successfully, but these errors were encountered:
An example of mine: a javascript-file that was 485kb before compression is 299kb after compression with brotli.js. The same file is 94.4kb when compressed 'on-the-fly' with ngx_brotli. I'm using quality 11 compression.
Steps to reproduce would be to install ngx_brotli on an nginx server, and compare file-sizes with the result of the following:
var fs = require('fs')
var brotli = require('brotli')
var result = brotli.compress(someFile, { quality: 11 })
fs.writeFile(someDir, result)
The text was updated successfully, but these errors were encountered: