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
1.1.45+196621f25
Darwin 24.1.0 arm64 arm
This is regarding bundling with index.html file as entry point. Create a styles.css with below content which is linked in index.html.
index.html
.flexrow { flex-direction: row; } .flexcol { flex-direction: column; } .hello { flex-wrap: wrap; } .world { flex-wrap: nowrap; }
Run build -
bun build ./index.html --outdir=dist --experimental-html --experimental-css
The generated build file should have the same css as defined.
The generated style file in the dist folder has the below content which is not correct.
.flexrow, .flexcol { flex-direction: row; } .hello, .world { flex-wrap: wrap; }
No response
The text was updated successfully, but these errors were encountered:
No branches or pull requests
What version of Bun is running?
1.1.45+196621f25
What platform is your computer?
Darwin 24.1.0 arm64 arm
What steps can reproduce the bug?
This is regarding bundling with
index.html
file as entry point. Create a styles.css with below content which is linked inindex.html
.Run build -
What is the expected behavior?
The generated build file should have the same css as defined.
What do you see instead?
The generated style file in the dist folder has the below content which is not correct.
Additional information
No response
The text was updated successfully, but these errors were encountered: