We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0618fbd commit d2dae27Copy full SHA for d2dae27
lib/loader.js
@@ -39,15 +39,11 @@ function sassLoader(content) {
39
return;
40
}
41
42
- const options = normalizeOptions(
43
- this,
44
- content,
45
- webpackImporter(
46
- resourcePath,
47
- pify(this.resolve.bind(this)),
48
- addNormalizedDependency
49
- )
50
- );
+ const options = normalizeOptions(this, content, webpackImporter(
+ resourcePath,
+ pify(this.resolve.bind(this)),
+ addNormalizedDependency
+ ));
51
52
// Skip empty files, otherwise it will stop webpack, see issue #21
53
if (options.data.trim() === "") {
0 commit comments