We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug This isn't a bug, but a performance optimization. Google pagespeed shows us that our stylesheets aren't being loaded in an optimal manner - we should preload them instead. See a sample report here: https://developers.google.com/speed/pagespeed/insights/?url=https%3A%2F%2Fwww.vaccine.gov.sg
To Reproduce Steps to reproduce the behavior This is a problem with how the template is loaded
Expected behavior The stylesheets should be loaded as <link rel="preload" as="style"...> instead of <link rel="stylesheet"...>
<link rel="preload" as="style"...>
<link rel="stylesheet"...>
Screenshots N/A
The text was updated successfully, but these errors were encountered:
adding onto the thread, there are two more lighthouse audit issues which are pending our investigation
Sorry, something went wrong.
No branches or pull requests
Describe the bug
This isn't a bug, but a performance optimization. Google pagespeed shows us that our stylesheets aren't being loaded in an optimal manner - we should preload them instead. See a sample report here: https://developers.google.com/speed/pagespeed/insights/?url=https%3A%2F%2Fwww.vaccine.gov.sg
To Reproduce
Steps to reproduce the behaviorThis is a problem with how the template is loadedExpected behavior
The stylesheets should be loaded as
<link rel="preload" as="style"...>
instead of<link rel="stylesheet"...>
Screenshots
N/A
The text was updated successfully, but these errors were encountered: