While grunt:watch is running, each time a sass file is processed @charset "UTF-8"; exists at the top of the style.css file until the default grunt task is run.
Adding replace:charset to the watch:sass task will prevent the charset from being appended to the top of the style file.
While
grunt:watch
is running, each time a sass file is processed@charset "UTF-8";
exists at the top of thestyle.css
file until the defaultgrunt
task is run.Adding
replace:charset
to thewatch:sass
task will prevent the charset from being appended to the top of the style file.