Boss Nass
Boss Nass

Reputation: 3522

SCSS compile error

I have recently started to see this error, and I cant work out what has caused it as I havent changed the css files recentlyenter image description here

Upvotes: 0

Views: 156

Answers (1)

furq
furq

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

Related Questions