I've been working on a web application using AngularJS. After using uglify and minify, I ended up with vendor.js and app.js files that are quite large - 2 MB and 720KB, respectively. When checking Chrome Dev Tools, I noticed that they took 25s and 14s to download, which seems like a significant amount of time even on my 100MBPS internet connection. I'm concerned about the customer experience for those with slower connections. Are there any techniques or tools available to compress or reduce the size of these files? I understand that breaking down vendor.js might not be feasible since Angular requires all of it on the first page.