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
Minimal reproduction https://github.com/ycmjason/vite-issue-imported-css-not-transformed
The same css code get transformed differently in the "@import"ed css.
index.css
@import './import-me.css'; .a { &__nest { display: block; } }
import-me.css
.b { &__nest { display: block; } }
The CSS as I inspected becomes (formatted)
.b { &__nest { display: block; } } .a__nest { display: block; }
As we can see import-me.css presumably did not go through postcss.
The text was updated successfully, but these errors were encountered:
a383ec3
No branches or pull requests
Minimal reproduction
https://github.com/ycmjason/vite-issue-imported-css-not-transformed
The same css code get transformed differently in the "@import"ed css.
index.css
import-me.css
The CSS as I inspected becomes (formatted)
As we can see
import-me.css
presumably did not go through postcss.The text was updated successfully, but these errors were encountered: