We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
import('./module-name.css') appears in the output, in place of the actual .js file.
import('./module-name.css')
.js
There's a reproduction here: https://codesandbox.io/s/interesting-mayer-uvouc?file=/out/parent.js, but I'm inlining the code here for clarity:
esbuild src/parent.js --bundle --outdir=./out --splitting --format=esm --platform=browser
src/parent.js
import('./child')
src/child.js
import './foo.css'
src/foo.css
body { color: black; }
out/parent.js
// src/parent.js import("./child.css");
^ child.js should be imported here
child.js
out/child.js
Empty (this is ok)
out/child.css
/* src/foo.css */ body { color: black; }
The text was updated successfully, but these errors were encountered:
938f719
Thanks for the report and the clear repro. A fix for this will be in the next release.
Sorry, something went wrong.
No branches or pull requests
import('./module-name.css')
appears in the output, in place of the actual.js
file.There's a reproduction here: https://codesandbox.io/s/interesting-mayer-uvouc?file=/out/parent.js, but I'm inlining the code here for clarity:
esbuild options
esbuild src/parent.js --bundle --outdir=./out --splitting --format=esm --platform=browser
Input
src/parent.js
src/child.js
src/foo.css
Output
out/parent.js
^
child.js
should be imported hereout/child.js
Empty (this is ok)
out/child.css
The text was updated successfully, but these errors were encountered: