其他分享
首页 > 其他分享> > chunk-vendors.js优化

chunk-vendors.js优化

作者:互联网

chunk-vendors.js优化

对于打包来说,chunk-vendors文件大导致加载熟读慢的优化。是很常见的,在我的项目开发中,实际没有没有引用太多的三方插件。但是总体积为900kb。加载耗时为15秒左右。再优化的时候发现,打开chrome的F12能够发现,真正的耗时是传输产生的。打开nginx的配置文件xx.conf【用户访问网站的nginx代理配置文件】,查看server模块发现,缺少压缩。故而再server里面添加如下即可。

    gzip on;
  gzip_static on;
  gzip_disable "MSIE [1-6]\.";
  gzip_types text/plain application/javascript application/x-javascript text/css application/xml text/javascript application/x-httpd-php;
  gzip_vary on;

重载服务

 sudo /usr/local/nginx/sbin/nginx -t【检查配置文件是否写错】
sudo service nginx reload

清空浏览器的缓存

测试结果发现,传输时使用压缩文件。速度提升至4。性能提升67%
 

标签:配置文件,application,text,chunk,js,nginx,vendors,gzip
来源: https://www.cnblogs.com/topass123/p/16609615.html