fix(angular): fix stylus import (#9950)

This commit is contained in:
Byron 2022-04-28 22:20:38 +02:00 committed by GitHub
parent 01fa62dcb8
commit be1d1578e5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -273,7 +273,7 @@ export class StylesheetProcessor {
}
case '.styl':
case '.stylus': {
const stylus = (await import('stylus')).default;
const stylus = await import('stylus');
return (
stylus(css)