-
Notifications
You must be signed in to change notification settings - Fork 103
New issue
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
Using extractCSS causes css links to not be preloaded #278
Comments
Duplicate of #232 See : #232 (comment) You can eventually comment there so we don't open multiple issues. |
I'm not sure this is a duplicate, #232 talks about how CSS is not included in the response, this issue is about the HTML header link tag is not marked as preload when the extractCss is true, I don't think this has anything to do with SSR |
@gotenxds The issue in #232 isn't all about SSR, it's about Critical CSS not preloaded. It affects SSR but is not only related to it. The good term is that not having these CSS "preloaded" make them not SSR ready, and overall affect performance with SSR, but it's an issue as well in SPA if i'm right. It's about HTML markup not correct in either SSR response if using SSR, or SPA first Html markup loaded at runtime |
I'd say this it's also related to nuxt/nuxt#6980 and it's happening to me without vuetify. |
Module version
The version of the module you're using.
nuxt 2.0.0
nuxt-ts 0.3.8
vuetify 2.0.0-alpha.4
Describe the bug
When enabling extractCSS some of the css gets extracted as expected but for some reason this creates 3 new css files that are not marked as preloaded
To Reproduce
Just make a clean nuxt with vutify project and use the extractcss option
Expected behavior
A clear and concise description of what you expected to happen.
all new css files to be marked as preloaded as well.
The text was updated successfully, but these errors were encountered: