-
-
Notifications
You must be signed in to change notification settings - Fork 6.4k
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
Importing CSS as string shouldn't also inject it into HTML's head #3246
Comments
For reference, there were already some discussions about this in this PR #2148 (comment) |
Sort of a +1, same use case regarding shadow-dom. And at least in my use case, using the CSS as string not only duplicates the output as @tbroyer mentions, but also, HMR doesn't seem to trigger on the string on updates. Maybe this should be filled as a different bug tho. It's just a bit more obvious when dealing with shadow-dom, as the update only appends to |
This makes Vite essentially a non-option when developing web components. What we've been using when configuring our previous build stack was explicitly excluding files named Maybe such a convention-based configuration option would make this easier to implement?
This would still allow bundling CSS for web components/modules that don't use shadow DOM or rely on the styling information from the light DOM (in case of web components using slots). |
Please consider implementing this in a way that seems likely to be compatible with the upcoming CSS module scripts. |
Same problem here, importing sass into a lit component. All the styles occur additionally in a style.css. Could anybody find at least a workaround for the time being? |
use |
I am not sure I understand. You mean I should write the css inline into the component directly instead of importing an external file? |
|
that is more than a workaround. It solves it for me. Thanks a bunch! |
Closing this issue. See e1de8a8 for reference 👍🏼 |
Describe the bug
When importing a CSS as string, e.g.
the CSS is also extracted into a CSS file and injected into the HTML's head.
This means that the CSS is duplicated as both "pure CSS" and a JavaScript String. This cause bloats and could also cause conflicts if the strings are intended to be injected into shadow doms, isolated from each another (a
.foo
selector in one shadow dom can be a completely different.foo
in another one, and of course of a.foo
in the main page; those isolated stylesheets could also use element selectors:a
, etc. as they're intended to be isolated into a shadow dom).The JS String is also not minified, which contributes to the bloat.
I can't see a reason why one would want both behaviors at the same time, and even then there would also be an easy workaround if one really wanted it:
(this is why I'm filing this as a bug report; feel free to reclassify as a request for enhancement)
Reproduction
See https://github.com/covidtrackerfr/vitemadose-front, deployed at https://vitemadose.covidtracker.fr
The project imports the styles as string to inject them into web components' shadow DOM.
The
styles/global.scss
here is duplicated both in the generatedassets/index.*.css
and as a JS string, but that's expected as it's imported both "for side-effects" (import "./styles/global.scss"
, to apply to the HTML page content) and "as string" (import globalCss from "../styles/global.scss"
, to be injected into web components' shadow dom, as they're isolated from the page).(this is bad as it leads to 222KB of duplicated content, but that's another issue, unrelated to Vite; the JS string is not minified CSS though, with >11KB of line breaks, and I haven't even looked at white space; this probably deserves a separate issue though).
All other stylesheets are only imported as strings, but they also end up in the
assets/index.*.css
file, unnecessarily. In this project, fortunately (or because they've been coded that way as a workaround), they don't cause conflicts, only bloat.System Info
Output of
npx envinfo --system --npmPackages vite,@vitejs/plugin-vue --binaries --browsers
:Used package manager: npm
Before submitting the issue, please make sure you do the following
The text was updated successfully, but these errors were encountered: