Reputation: 3522
I have recently started to see this error, and I cant work out what has caused it as I havent changed the css files recently
Upvotes: 0
Views: 156
Reputation: 5818
You need to convert your SCSS file to UTF-8; if it contains any characters (â, in this case) outside the range of \x00-\x80 then it can't be implicitly converted from ASCII.
Any decent editor should be able to convert it to UTF-8, or failing that use iconv
.
Of course, you can also just remove the offending character, but I presume it's there for a good reason.
Upvotes: 1