Is there any way I can speed up Pages that are using Google Adsense . Like using workers or zaraz
These are third-party resources, and I am not aware for now.
Nevertheless, adding dns-prefetch
and preconnect
to your HTML code inside <head>...</head>
might help a bit:
<link href="//adservice.google.com" rel="dns-prefetch preconnect">
<link href="//pagead2.googlesyndication.com" rel="dns-prefetch preconnect">
<link href="//tpc.googlesyndication.com" rel="dns-prefetch preconnect">
<link href="//doubleclick.net" rel="dns-prefetch preconnect">
<link href="//googleads.g.doubleclick.net" rel="dns-prefetch preconnect">
From Google Support center:
Other suggestions:
Furthermore, Ads are displayed always with a bit delay, I believe itβs due to all the parameters needed to generate and place and adequate ad for the visitor at the given moment.
2 Likes
This topic was automatically closed 15 days after the last reply. New replies are no longer allowed.