I'm using webpack as my build tool, and my UI uses Bootstraps free Glyphicons. I'm currently bundling my fonts (the glyphicons) using url-loader, bundling woff, woff2, eot, ttf and svg. But is this the right thing to do?
My understanding is that if you specify woff, woff2, eot, ttf and svg fonts in your CSS, the browser will decide which one it best suited for, and download that - and not download the rest. But bundling the fonts through webpack surely means that every browser (and device, platform) get's every font.
Should I be bundling my fonts, or is there a better way to do it so that I can still use webpack, but have the browser download and use only the font that is right for it?