-
Notifications
You must be signed in to change notification settings - Fork 192
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Charset error, invalid character #84
Comments
How of curiosity, which compiler do you use? |
Done in #86. Please review @eduardoboucas. |
Merged! Thanks guys. |
Sorry but I'm still facing this issue after updating the file :(
SASS and Compass gems also updated. |
Try to add in your config.rb Encoding.default_external = 'utf-8' Because it should work. |
It works! Thank you so much @prisis :) |
Your welcome :) The best solution is to add ´´´´@charset "UTF-8";´´´´ on top of all your scss/sass files. Because sometimes Ruby dont use UTF-8 as default. |
Hello, If it's not conflict source, could you replace the simple quote by double quotes in the charset like the first comment ? |
Feel free to submit a PR. :) |
Getting this error when trying to compile on macOS Sierra in Grunt
|
Can you confirm you're using the latest version (1.4.8) of include-media? |
Yes that's correct. The version of 1.4.8 that I have only has @charset 'UTF-8'; and not the double quotes. |
As the main SCSS file (
include-media/dist/_include-media.scss
) uses≥
and≤
chars, there's the following error arising:Please add
@charset "UTF-8";
as first line in those files to avoid such errors with SCSS.Thanks in advance!
The text was updated successfully, but these errors were encountered: