728x90
속도적인 이슈가 있어서 preload 속성을 추가했습니다.
<link rel='preload' onload='this.rel="stylesheet"' as='style' id='test-css' href='style.css' type='text/css' media='all' />
크롬에서는 잘 작동하였지만 파이어폭스에서는 작동하지 않았습니다.
최선의 해결책은 두 개의 파일을 로드하는 것으로 preload를 지원하는 브라우저는 의도한 대로 사용하고 지원하지 않는 브라우저는 나중 방법으로 사용합니다.
<link rel='preload' href='style.css' as='style'>
<link rel='stylesheet' href='style.css'>
<link rel='preload' rel='stylesheet' href='style.css' as='style'>
728x90
'Programming > 버그 일지' 카테고리의 다른 글
firestore missing or insufficient permissions 해결 방법 (0) | 2020.12.28 |
---|---|
"react-scripts 내부 또는 외부 명령, 실행할 수 있는 프로그램, 또는 배치 파일이 아닙니다" 해결 방법 (0) | 2020.12.28 |
TypeError: this.engines is not iterable (0) | 2020.12.16 |
tomcat에 temp폴더에 있는 엄청난 양의 +~JF **** .tmp파일 해결방법 (0) | 2020.11.26 |
개체가 속성이나 메소드를 지원하지 않습니다(IE Not working after) (0) | 2019.08.23 |
댓글