检测到慢速网络。加载时将使用Fallback字体

时间:2017-12-20 13:47:28

标签: google-chrome font-awesome console.log fallback

在谷歌Chrome控制台上获得Slow network is detected. Fallback font will be used while loading:

2 个答案:

答案 0 :(得分:0)

click here for get solution

删除所有unicode范围:U + 0100-024F,U + 0259,U + 1E00-1EFF,U + 20A0-20AB,U + 20AD-20CF,U + 2C60-2C7F,U + A720 -A7FF;

答案 1 :(得分:0)

只需在所有字体定义上添加 font-display:block;

@font-face {
  font-family: ExampleFont;
  src: url(/path/to/fonts/examplefont.woff) format('woff'),
       url(/path/to/fonts/examplefont.eot) format('eot');
  font-weight: 400;
  font-style: normal;
  font-display: block;
}