fix(cli): CSS preprocessor for scoped (#12860)

This commit is contained in:
zoy 2024-05-18 19:53:52 +08:00 committed by GitHub
parent dffcd07c7c
commit 413150a4ab
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -140,6 +140,9 @@ export async function compileSfc(filePath: string): Promise<any> {
filename: path.basename(cssFilePath),
scoped: style.scoped,
id: scopeId,
preprocessLang: style.lang as Parameters<
typeof compileStyle
>[0]['preprocessLang'],
});
return outputFile(cssFilePath, trim(styleSource.code));