v4.0.0 Scss Compilation Error: Invalid US-ASCII character “\xE2” (_hover mixin partial)
See original GitHub issueGood day,
Was trying to update projects from beta 3 to v4.0.0 but kept receiving the following error when compiling some modules.
After isolating the affected file mixins/_hover.scss and going through it, seems to be the -
character from iOS-an.. in top comments (line 6).
Replacing the -
character with your own or setting @charset: 'UTF-8';
at the top of the file does the trick (you can also remove line 6 altogether as well).
Thank you!
Issue Analytics
- State:
- Created 6 years ago
- Reactions:3
- Comments:6 (3 by maintainers)
Top Results From Across the Web
Falcon Sandbox v8.45.3 © Hybrid Analysis
'\xe0': 'a', '\xe1': 'a', '\xe2': 'a', '\xe3': 'a', '\xe4': 'a', '\xe5': 'a', ... illegalAttributeNameCache[attributeName] = true; { error('Invalid ...
Read more >Artifact [7eaaaacd08] - Keyframe
Used to match words composed of alphanumeric characters. ... '\xc2': 'A', '\xc3': 'A', '\xc4': 'A', '\xc5': 'A', '\xe0': 'a', '\xe1': 'a', '\xe2': 'a', ......
Read more >Simple-Jekyll-Search - rubycoloredglasses
Place the following code in a file called search.json in the root of your Jekyll blog. ... Pattern match "(^[\"'`\xc2\xb4\xe2\x80\x99\xe2\x80\x98 ...
Read more >https://raw.githubusercontent.com/AndrewVos/github...
nextTick error, or 'error' event on first tick ^ SyntaxError: Invalid regular ... \xE2\x99\xA5" - :message: Added ability to not include code example ......
Read more >add vue-sites (fde3379c) · Commits · djf / leming-WebApiScraper
Fix issue where URLs containing invalid characters within ... b("\x81\x8fabcd\x82\xe3\xf0\x87\xe3\xf1\x80\xe5\xca\x81\xe2\xc5\x82\xe3\xcc")).
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
I can confirm this on ubuntu 16.04 and sass 3.5.5. I’ve installed 4.0.0 with yarn no changes made.
The Problem is in
scss/mixins/_hover.scss
the error is the comments:When I remove this line
bootstrap.css
will build without any ProblemSass supports a
default-encoding
argument. You should add--default-encoding=UTF-8
when compiling bootstrap from sass, that should fix the issue.