↧
Answer by Volker E. for Why does Sass prepend an incorrect @charset rule?
Like @Alireza-Fatahi states in this answer, you could save a line in CSS output and instead go for a default Charset on external files, by adding this line to your config.rb in your project...
View ArticleAnswer by Blair McMillan for Why does Sass prepend an incorrect @charset rule?
Try adding @charset "UTF-8"; to your original SCSS file, SASS shouldn't override it/add its own then.
View ArticleWhy does Sass prepend an incorrect @charset rule?
I use sass --watch scss:cssto have Sass automatically create CSS files (and put them in the /css directory) for each SCSS file (from my /scss directory).In my SCSS file I have this:.foo::before {...
View Article
More Pages to Explore .....