Skip to content

Commit a3de984

Browse files
committed
Fix order of loading scss in sass loader
1 parent b60a4ef commit a3de984

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/app/src/sandbox/eval/transpilers/sass/worker/sass-worker.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ const resolveAsyncModule = (
5050
self.addEventListener('message', resolveFunc);
5151
});
5252

53-
const SUPPORTED_EXTS = ['css', 'sass', 'scss'];
53+
const SUPPORTED_EXTS = ['scss', 'sass', 'css'];
5454

5555
const existsPromise = (fs, file) =>
5656
new Promise(r => {

0 commit comments

Comments
 (0)