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
Is it possible to parse <link href="..." rel="preload" as="style"> (stylesheet) and <link href="..." rel="preload" as="script"> (javascript) in the future? Perhaps I can try a PR on this, what do you think?
The text was updated successfully, but these errors were encountered:
It would certainly be possible. Right now, rel="preload" is skipped only because we only look for "stylesheet" and "icon". I'm not really a fan of "inline everything" (and regret adding that feature), but I'm guessing you can't add the inline attribute because these are generated by Vue? I suppose preload is also a good signal for optimisation.
Hello,
I want to parse an html file from a vuejs project build:
Is it possible to parse
<link href="..." rel="preload" as="style">
(stylesheet) and<link href="..." rel="preload" as="script">
(javascript) in the future? Perhaps I can try a PR on this, what do you think?The text was updated successfully, but these errors were encountered: