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
Using @import will only substitute with the file contents if it is referencing a .less file. This needs to support .css files too.
@import
The text was updated successfully, but these errors were encountered:
It's intentional, it gives you the ability to import css without compiling it.
Sorry, something went wrong.
And that by-design prevents us from being able to combine multiple CSS files into one - which is our requirement.
Why not have it so if you don't want to combine do something like this @import 'other.css?nocombine'
@import 'other.css?nocombine'
It allows us to achieve both our desired functionalities. I tried bypassing the check via monkey patching, but failed getting it to work.
No branches or pull requests
Using
@import
will only substitute with the file contents if it is referencing a .less file. This needs to support .css files too.The text was updated successfully, but these errors were encountered: