Open amoeba opened 2 years ago
The HTML template the web proxy uses puts two render-blocking resources in the head tag. I noticed this because loading the page is noticeably slow. We should move these down into the end of the body so they don't render-block.
head
body
https://github.com/DataONEorg/slinky/blob/102941f33b053aa40f14d21e9c1e4481ba8e6e6e/deploy/docker/web/templates/base.html#L6-L9
While we're at it, there are a few more things we should change. Here's the full list:
unpkg
I might make some style/layout tweaks while I'm in here too.
The HTML template the web proxy uses puts two render-blocking resources in the
head
tag. I noticed this because loading the page is noticeably slow. We should move these down into the end of thebody
so they don't render-block.https://github.com/DataONEorg/slinky/blob/102941f33b053aa40f14d21e9c1e4481ba8e6e6e/deploy/docker/web/templates/base.html#L6-L9
While we're at it, there are a few more things we should change. Here's the full list:
unpkg
I might make some style/layout tweaks while I'm in here too.