I'm trying to add some fonts as assets into my app like this
@include font-face('test-Regular', './assets/fonts/test_Regular', null, 'Regular', 'ttf');
@include font-face('test-Bold', './assets/fonts/test_Bold', null, 'Regular', 'ttf');
@include font-face('testCondensed-Bold', './assets/fonts/test_Cond_Bold', null, null, 'ttf');
@include font-face('testCondensed-Regular', './assets/fonts/test_Cond_Regular', null, null, 'ttf');
ALL the fonts are working fine on Chrome, FF, but the regular fonts only are NOT working on IE11, with the condensed ones are working as they should be.