webpack3+nginx+vue开启gzip 陆贞 2019-10-09 846 阅读1分钟 记录下项目中使用gzip,本地搭建的nginx1.webpack开启压缩 productionGzip:true 2.nginx配置 gzip_static on; gzip_http_version 1.1; gzip_proxied expiredno-cacheno-store private auth; gzip_disable "MSIE [1-6]\."; gzip_vary on; 开启前开启后