Skip to content

Commit

Permalink
fix(angular): fix stylus import (#9950)
Browse files Browse the repository at this point in the history
  • Loading branch information
03byron committed Apr 28, 2022
1 parent 01fa62d commit be1d157
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -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)
Expand Down

0 comments on commit be1d157

Please sign in to comment.