2

Am getting Slow network is detected. Fallback font will be used while loading: on google chrome console

wild coder
  • 880
  • 1
  • 12
  • 18
  • 1
    Duplicate of : https://stackoverflow.com/questions/40143098/why-does-this-slow-network-detected-log-appear-in-chrome – Vishal Sharma Dec 20 '17 at 13:49
  • 1
    Possible duplicate of [Why does this "Slow network detected..." log appear in Chrome?](https://stackoverflow.com/questions/40143098/why-does-this-slow-network-detected-log-appear-in-chrome) – Vishal Sharma Dec 20 '17 at 13:49
  • May be...But i am not getting appropriate solution – wild coder Dec 20 '17 at 13:54
  • 1
    So explain your situation so we can help you more; With only the error we cannot help you more ! – NatNgs Dec 20 '17 at 13:55
  • "Slow network is detected. Fallback font will be used while loading: http://localhost:54721/Fonts/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0" is it a font issue or coding issue or browser issue ? how can i fix it permanently ? without hiding it form console. – wild coder Dec 20 '17 at 14:07

2 Answers2

3

Simply add font-display:block; on all font-face definition.

@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;
}
MrAdib
  • 726
  • 12
  • 21
0

click here for get solution

Remove your all unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;

SPARTAN
  • 104
  • 4