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
In some scenario I want to ignore css import.
@import "css/example.css";
@import url(http://fonts.googleapis.com/css?family=Open+Sans);
The text was updated successfully, but these errors were encountered:
I'm facing problems with @import at this moment, even using
@import
cssmin : { options : { 'processImport': false }, root: 'path/to/root/css/' },
anyone has any suggestion on how t o get it working?
Sorry, something went wrong.
@h3nr1ke It might be related to changes in the Clean CSS plugin, see version 4.0 breaking changes:
processImport and processImportFrom are merged into inline option which defaults to local. Remote @import rules are NOT inlined by default anymore;
No branches or pull requests
In some scenario I want to ignore css import.
@import "css/example.css";
@import url(http://fonts.googleapis.com/css?family=Open+Sans);
The text was updated successfully, but these errors were encountered: