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
Hello,
When import a css file into less using inline import like this:
@import (inline) './node_modules/normalize.css/normalize.css';
and setting my grunt less task option to compress: true the output is still uncompressed.
compress: true
Any way to fix this ?
The text was updated successfully, but these errors were encountered:
+1. less file's contents are compressed, but imported css is just inlined, without compression.
Sorry, something went wrong.
A workaround I found is simply to import the CSS as a less file:
@import (less) './node_modules/normalize.css/normalize.css';
The css file gets minified in the output :)
No branches or pull requests
Hello,
When import a css file into less using inline import like this:
@import (inline) './node_modules/normalize.css/normalize.css';
and setting my grunt less task option to
compress: true
the output is still uncompressed.Any way to fix this ?
The text was updated successfully, but these errors were encountered: