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

Popular posts from this blog

jquery - How can I dynamically add a browser tab? -

node.js - Getting the socket id,user id pair of a logged in user(s) -

keyboard - C++ GetAsyncKeyState alternative -