内容简介:從「我自己的也沒加... 補上 gzip 相關的設定後,favicon.ico 的傳輸量從 4.2KB 降到 1.2KB。我是使用
從「 Compressed favicons are 70% smaller but 75% of them are served uncompressed
」這邊看到的,他們發現大約有 73.5% 的網站沒有壓縮 favicon.ico
檔:
The HTTP Archive dataset of favicons from 4 million websites crawled from desktop devices on May 2019 shows that 73,5 % of all favicons are offered without any compression with an average file size of 10,5 kiB, 21,5 % are offered with Gzip compression at an average file size of 4 kiB, and 5 % offer Brotli compression at an average file size of 3 kiB.
我自己的也沒加... 補上 gzip 相關的設定後,favicon.ico 的傳輸量從 4.2KB 降到 1.2KB。
我是使用 nginx
,在 Ubuntu
上 nginx 的 nginx.conf
內 gzip 預設已經有開,所以只要增加一些設定讓他知道要處理 ico 檔案就可以了。
方法是在 /etc/nginx/conf.d/gzip.conf
裡面放:
gzip_comp_level 9; gzip_types image/vnd.microsoft.icon image/x-icon; gzip_vary on;
跟文章裡面提到的多了兩個設定,一個是 gzip_comp_level
改成 9 (預設是 1),另外有 gzip 時應該要在 Vary
表示,避免 cache 出錯。
以上所述就是小编给大家介绍的《補上 nginx 對 favicon 的壓縮...》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!
猜你喜欢:本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Sass and Compass in Action
Wynn Netherland、Nathan Weizenbaum、Chris Eppstein、Brandon Mathis / Manning Publications / 2013-8-2 / USD 44.99
Written by Sass and Compass creators * Complete Sass language reference * Covers prominent Compass community plug-ins * Innovative approach to creating stylesheets Cascading Style Sheets paint the we......一起来看看 《Sass and Compass in Action》 这本书的介绍吧!