DEV Community

Discussion on: Took me 2.5 hours how to speed up this page

Collapse
 
mgrsskls profile image
Michael Großklaus

How was the widget included?

Like this?

<script src="widget.js"></script>

Then try to do this:

<script src="widget.js" async></script>

or

<script src="widget.js" defer></script>

and move it into the head (usually before stylesheets, but depends on the script) if it wasn't there already.

That should make Google pagespeed happier!