How disable comments from scss file
See original GitHub issueIn my result css file I see comments from generated .scss file
/*
SCSS variables are information about icon's compiled state, stored under its original file name
.icon-home {
width: $icon-home-width;
}
The large array-like variables contain all information about a single icon
$icon-home: x y offset_x offset_y width height total_width total_height image_path;
*/
How disable this comment??
Issue Analytics
- State:
- Created 9 years ago
- Reactions:2
- Comments:9 (2 by maintainers)
Top Results From Across the Web
Is there any way to remove comments from scss files upon ...
Comments are bits I just don't want to serve up across the wire. Is there any config I can use to remove all...
Read more >sass - Which output styles remove multiline line comments?
My solution was to simply apply a Perl one-liner to manually remove comments from a .css file, after sass has generated its final...
Read more >Comments - Sass
Comments in SCSS work similarly to comments in other languages like JavaScript. Single-line comments start with // , and go until the end...
Read more >How to Completely Disable Comments in WordPress (Ultimate ...
The easier way to bulk disable comments is by using a code snippet. If you're an advanced user, you can either paste the...
Read more >How to Add Comments in CSS for Yourself or Your Developer
In this post, we'll walk through how to create comments in CSS. Then, we'll cover what it means to “comment out” in CSS...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
When I said that we do not use minification, under this also meant that we use
expanded
output style for SASS.At the moment, I have to cut the comments of the generated spritesmith .scss file using grunt-stripcomments. Thereafter, the resulting file CSS is generated without spritesmith comment. But it would be nice if your utility was some way to control the output comments.