You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Gatsby add <link rel="preload" ... /> scripts to each page. The browser will download these, but never execute them. Chrome warns about this issue with the console message:
The resource https://path/to/script.js was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate as value and it is preloaded intentionally.
Solution
Add code to remove these (inside here?) when calling replaceHeadComponents().
Problem
Gatsby add
<link rel="preload" ... />
scripts to each page. The browser will download these, but never execute them. Chrome warns about this issue with the console message:Solution
Add code to remove these (inside here?) when calling
replaceHeadComponents()
.PR here: #32
The text was updated successfully, but these errors were encountered: