compiler construction - SASS inserts code comments periodically into my compiled CSS -
just wondering why sass , how prevent - i'm using scout manage sass / compass projects. inside "sass" folder have main.scss file imports partials/reset.scss file. these compile ../css/main.css , ../css/partials/reset.css respectively. in both of compiled css files, there periodic comments this:
/* line 13, ../../sass/partials/reset.scss */ /* line 24, ../../sass/partials/reset.scss */
how prevent adding these comments? they're not in scss files.
those line comments indicate code generates styles comes from. can disable uncommenting out line in config.rb:
# line_comments = false
Comments
Post a Comment