Why does this “Slow network detected…” log appear in Chrome?

后端 未结 18 2325
隐瞒了意图╮
隐瞒了意图╮ 2020-12-12 09:36

I noticed this info log began to appear in Google Chrome Dev (Version 55.0.2883.18 dev) and I can\'t imagine why.

Slow network is detecte

18条回答
  •  执笔经年
    2020-12-12 10:04

    Go to the Font's stylesheet.css and add font-display: block; in all @font-face { }

    This Stackoverflow Answer helped me..

    Below is the Summary of the answer

    If you can access to css of this extension, simply add font-display:block; on font-face definition or send feedback to developer of this extension:)

    @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;
    }
    

提交回复
热议问题