Skip to content

Commit af40e43

Browse files
authored
fix(css): don't override internal importer (#860)
1 parent fd967d2 commit af40e43

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/css/src/preprocessors.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -292,8 +292,8 @@ async function compileSass(
292292
url: pathToFileURL(filename),
293293
sourceMap: false,
294294
syntax: lang === 'sass' ? 'indented' : 'scss',
295-
importers: [internalImporter, ...(sassOptions.importers ?? [])],
296295
...sassOptions,
296+
importers: [internalImporter, ...(sassOptions.importers ?? [])],
297297
})
298298

299299
return {

0 commit comments

Comments
 (0)