Am getting Slow network is detected. Fallback font will be used while loading:
on google chrome console
Asked
Active
Viewed 5,725 times
2

Arun Vinoth-Precog Tech - MVP
- 22,364
- 14
- 59
- 168

wild coder
- 880
- 1
- 12
- 18
-
1Duplicate of : https://stackoverflow.com/questions/40143098/why-does-this-slow-network-detected-log-appear-in-chrome – Vishal Sharma Dec 20 '17 at 13:49
-
1Possible 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
-
1So 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 Answers
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
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
-
5
-
2@Billa Just download all fonts manually and add in your project. Remove all unicode range from your css font file. – SPARTAN Dec 23 '17 at 14:24