Skip to content
This repository was archived by the owner on Jul 21, 2021. It is now read-only.

Commit 8401cc0

Browse files
committed
Force support of UTF-8 for SASS
This commit fixes `Warning: Error: Invalid US-ASCII character "\xE2"` happening for `src/scss/light-theme.scss` and `src/scss/dark-theme.scss`.
1 parent fef6e05 commit 8401cc0

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

Gruntfile.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,8 @@ module.exports = function (grunt) {
183183
build: {
184184
options: {
185185
sourcemap: 'none',
186-
style: 'expanded'
186+
style: 'expanded',
187+
defaultEncoding: 'UTF-8'
187188
},
188189

189190
files: {
@@ -195,7 +196,8 @@ module.exports = function (grunt) {
195196
min: {
196197
options: {
197198
sourcemap: 'none',
198-
style: 'compressed'
199+
style: 'compressed',
200+
defaultEncoding: 'UTF-8'
199201
},
200202

201203
files: {

0 commit comments

Comments
 (0)