렌더링 차단 리소스 피하기
개요
이 감사는 광고 태그 라이브러리의 로드를 지연시키는 리소스 (특히 스크립트와
스타일시트)를 식별합니다. 다음은 광고 태그 라이브러리가 로드되기 전에 요청 및 수신된 리소스입니다. 태그 로드 전에 요청되는 리소스 수를 줄이면 광고 로드 속도가 빨라집니다.
권장사항
이 감사의 세부정보에는 태그 로드를 지연시키는 모든 스크립트와 스타일시트의 목록이 포함되어 있습니다. 목표는 이 목록의 항목 수를 가능한 한 0에 가깝게 줄이는 것입니다. 이를 위한 몇 가지 팁은 다음과 같습니다.
- 페이지의
<head>
앞부분에서 광고 태그 라이브러리를 로드합니다.
- 핵심 기능에 중요한 스크립트와 스타일시트를 HTML에 직접 인라인합니다.
- 중요하지 않은 스크립트를
async
또는 defer
속성으로 표시
- 미디어 쿼리별로 스타일을 여러 파일로 분리하고
media
속성을 사용하여 필요할 때만 로드합니다.
다음과 같은 광고 태그 라이브러리 스크립트가 지원됩니다.
보관함 |
스크립트 |
AdSense |
pagead2.googlesyndication.com/pagead/js/adsbygoogle.js
pagead2.googlesyndication.com/pagead/show_ads.js
|
Google 게시자 태그 |
googletagservices.com/tag/js/gpt.js
securepubads.g.doubleclick.net/tag/js/gpt.js
|
렌더링 차단 리소스
달리 명시되지 않는 한 이 페이지의 콘텐츠에는 Creative Commons Attribution 4.0 라이선스에 따라 라이선스가 부여되며, 코드 샘플에는 Apache 2.0 라이선스에 따라 라이선스가 부여됩니다. 자세한 내용은 Google Developers 사이트 정책을 참조하세요. 자바는 Oracle 및/또는 Oracle 계열사의 등록 상표입니다.
최종 업데이트: 2024-06-26(UTC)
[null,null,["최종 업데이트: 2024-06-26(UTC)"],[[["This audit helps identify scripts and stylesheets that slow down the loading of ad tags by being requested before them."],["Reducing the number of these resources loaded prior to ad tags can significantly improve ad loading speed."],["Optimization strategies include loading ad tags earlier, inlining critical resources, using `async` or `defer` for non-critical scripts, and separating stylesheets by media query."],["Supported ad tag libraries include AdSense and Google Publisher Tag, with specific script URLs for identification."]]],["The audit identifies scripts and stylesheets that delay ad tag library loading. To improve ad loading speed, reduce the number of resources requested before tag loading. Key actions include loading ad tag libraries earlier, inlining critical scripts/stylesheets, marking non-critical scripts with `async` or `defer`, and using the `media` attribute for conditional stylesheet loading. Supported ad tag libraries include AdSense and Google Publisher Tag, each with specific script URLs. The goal is to have minimal or zero items on this list.\n"]]