6
hexc
6y

So for the past day I've been obsessed with adding compression into my build pipeline for web dev, I've implemented html minify, babel JS minify, gzip and made the server specify content length to prevent chunking and shave off a few unused bytes. Is there anything else anyone can think of to get even more gains? Sofar my project went from 1.33mb to 180kb transferred. It's a huge win, just wondering if I can push it further somehow?

Comments
  • 0
    Sounds like you’re doing a great job! Other than making sure you aren’t loading unused fonts (or weights of fonts) or images and not loading unnecessary code you can’t reduce that number much further.
Add Comment