-
-
Notifications
You must be signed in to change notification settings - Fork 6.2k
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
CSS from entrypoints is not extracted correctly #17527
Comments
Start a new pull request in StackBlitz Codeflow. |
I currently working on a workaround, but it is very unexpected that vite only can handle this with HTML input and not with JS input (meaning you currently have to guess which CSS to use with your JS entry). My workaround plugin solution: nextcloud-libraries/nextcloud-vite-config#204 |
The manifest includes the information about which CSS files needs to be loaded for each entrypoint. The manifest generation can be enabled with For your reproduction the manifest will be: {
"_style.js": {
"file": "chunks/style.js",
"name": "style",
"css": [
"assets/style.css"
]
},
"css.js": {
"file": "chunks/css.js",
"name": "css",
"src": "css.js",
"isDynamicEntry": true,
"css": [
"assets/css.css"
]
},
"main.js": {
"file": "main.js",
"name": "main",
"src": "main.js",
"isEntry": true,
"imports": [
"_style.js",
"css.js"
]
},
"second.js": {
"file": "second.js",
"name": "second",
"src": "second.js",
"isEntry": true,
"imports": [
"_style.js"
],
"dynamicImports": [
"css.js"
]
}
} From this file, you can calculate which CSS files needs to be loaded for each entry:
|
Maybe one should consider this a missing feature, as for HTML this is already done correctly (it is injected in the HTML entry) but for everything that is not HTML this requires manual parsing then. Would you accept this feature, like having a |
Describe the bug
I am using vite with JavaScript entry point.
If I have entry points with styles (e.g. Vue components) and also async styles (e.g. async Vue component),
and I set
build.cssCodeSplit: false
then vite will not correctly extract the CSS.For the async import the styles are loaded using module preload correctly.
But for the entry points with static imports no CSS entry point is created, so I do not know which CSS file I need to add to my application.
Expected behavior:
entry-point-name.css
for the styles synchronously used by that entry pointentry-point-name.css
with@import
for the css chunks used synchronously by that entry pointReproduction
https://stackblitz.com/edit/vitejs-vite-bagjfe?file=vite.config.js
Steps to reproduce
npm ci && npx vite build
main.css
nor asecond.css
but just some "randomly" named assets¹¹ For bigger projects this might contain a lot of css assets with random names.
System Info
Does not matter, but: System: OS: Linux 5.0 undefined CPU: (8) x64 Intel(R) Core(TM) i9-9880H CPU @ 2.30GHz Memory: 0 Bytes / 0 Bytes Shell: 1.0 - /bin/jsh Binaries: Node: 18.20.3 - /usr/local/bin/node Yarn: 1.22.19 - /usr/local/bin/yarn npm: 10.2.3 - /usr/local/bin/npm pnpm: 8.15.6 - /usr/local/bin/pnpm npmPackages: vite: ^5.3.1 => 5.3.1
Used Package Manager
npm
Logs
No response
Validations
The text was updated successfully, but these errors were encountered: