Hey, I'm building a chrome packaged app, and want to use Bootstrap.
Bootstrap has a Glyph Halflings font that offers some icons.
When I include boostrap.css, I never see the font files loaded in the network tab of dev tools.
Reading other posts, I tried this, but it was not successful that I could see in my app or network tab. The fonts are never loaded:
/* Assist for Bootstrap icons */
@font-face {
font-family: 'Glyphicons Halflings';
src: url("data:font/woff;charset=utf-8;base64,d09GRgABAAAAAFsYABEAAAAAoU...VLmWK4AAA==") format('woff');
}
How are fonts included in a Chrome packaged app?