Skip to content

Commit 44214e1

Browse files
authored
fix(index): use the css loader together with other CSS-processing extensions
fixes #14
1 parent 87887df commit 44214e1

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

src/index.js

+5-2
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,13 @@ function getPath(resolvedResource) {
1616
output += `!!css!`;
1717
break;
1818
case ".scss":
19-
output += `!!sass!`;
19+
output += `!!css!sass!`;
2020
break;
2121
case ".less":
22-
output += `!!less!`;
22+
output += `!!css!less!`;
23+
break;
24+
case ".styl":
25+
output += `!!css!stylus!`;
2326
break;
2427
}
2528

0 commit comments

Comments
 (0)