-
Notifications
You must be signed in to change notification settings - Fork 108
Non-critical rules are erased from inline styles #112
Comments
I don't see how inline head styles are related to preload, they are not links? They are just processed in place (and merged with critical css, depending on |
I believe that purpose of inline css. Since that is font inline, and it is not used yet, so it is not included. can you try just use that font in a div to see it is included or not? |
That font is used, detecting that is a separate problem, see #113 follow-up. The issue here is broadly that critters seems to erase non-critical rules from inline blocks, which is destructive operation. There is no other source of those rules to load or fall back on, they are just gone. |
@Rarst Did you manage to find a solution? |
No, I think I just kept the rules in the stylesheet at the time. |
Closing this issue because ownership of Critters has moved to the Nuxt team, who will be maintaining the project going forward. This repo is archived and won't receive any future updates. If the issue is still relevant, please re-post it to the actively-maintained fork at https://github.com/danielroe/beasties. |
I have some
@font-face
rules for size-adjusted fallback fonts, to reduce CLS while web fonts are loading.Out of the box critters doesn't seem to consider them critical CSS to inline (I've tried with
inlineFonts
, no difference for some reason?).However stranger thing happens if I explicitly include them in HTML - critters actively erases them from style block.
So given following style in head:
What's left from it after critters pass is:
The font-face rules are gone - they are not there, or in critical CSS, or anywhere.
The log says:
Which is... strange. Dropping any CSS from inline style seems actively destructive? It's not elsewhere, to be loaded later, it's just gone.
From some experiments same happens with any "non-critical" rule, that is such for a class not used on a page.
The text was updated successfully, but these errors were encountered: