Skip to content
This repository was archived by the owner on Mar 16, 2026. It is now read-only.

Commit 5617d84

Browse files
ondrejbartaspedronauck
authored andcommitted
fix: allow to use { indentedSyntax: true } for sass (#16)
1 parent fe61e24 commit 5617d84

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ const loaders = {
6969
sass: (opts: Opts = {}) =>
7070
getStyleLoaders(
7171
require.resolve('sass-loader'),
72-
merge(opts, { indentedSyntax: false })
72+
merge({ indentedSyntax: false }, opts)
7373
),
7474

7575
less: (opts: Opts = {}) =>

0 commit comments

Comments
 (0)