Failed to decode downloaded font

Hi there,

I having a problem with fonts in my vendor css files.

This is the raw css:

@font-face {
    font-family: 'fontello';
    src: url("../fonts/entypo.eot?94568459");
    src: url("../fonts/entypo.eot?94568459#iefix") format("embedded-opentype"), url("../fonts/entypo.woff?94568459") format("woff"), url("../fonts/entypo.ttf?94568459") format("truetype"), url("../fonts/entypo.svg?94568459#fontello") format("svg");
    font-weight: normal;
    font-style: normal;
}

This is what comes out:

@font-face {
  font-family: 'fontello';
  src: url(data:application/vnd.ms-fontobject;base64,bW9kdWxlLmV4cG9ydHMgPSBfX3dlYnBhY2tfcHVibGljX3BhdGhfXyArICJmb250cy9lbnR5cG8uZW90Ijs=);
  src: url(data:application/vnd.ms-fontobject;base64,bW9kdWxlLmV4cG9ydHMgPSBfX3dlYnBhY2tfcHVibGljX3BhdGhfXyArICJmb250cy9lbnR5cG8uZW90Ijs=#iefix)
  format("embedded-opentype"), url(data:font/woff;base64,bW9kdWxlLmV4cG9ydHMgPSBfX3dlYnBhY2tfcHVibGljX3BhdGhfXyArICJmb250cy9lbnR5cG8ud29mZiI7) format("woff"), url(data:font/ttf;base64,bW9kdWxlLmV4cG9ydHMgPSBfX3dlYnBhY2tfcHVibGljX3BhdGhfXyArICJmb250cy9lbnR5cG8udHRmIjs=) format("truetype"), url(data:image/svg+xml;base64,bW9kdWxlLmV4cG9ydHMgPSBfX3dlYnBhY2tfcHVibGljX3BhdGhfXyArICJmb250cy9lbnR5cG8uc3ZnIjs=#fontello) format("svg");
  font-weight: normal;
  font-style: normal; }

Chrome giving me a warning:

(index):1 Failed to decode downloaded font: data:font/woff;base64,bW9kdWxlLmV4cG9ydHMgPSBfX3dlYnBhY2tfcHVibGljX3BhdGhfXyArICJmb250cy9lbnR5cG8ud29mZiI7
(index):1 OTS parsing error: invalid version tag

I am using the default webpack.config.js

Any help on this issue?

Thank you! :slight_smile: