Home > database >  Sass: Error: Can't find stylesheet to import
Sass: Error: Can't find stylesheet to import

Time:12-27

Why does the compiler give me an error: Can't find stylesheet to import even though I specified the right path when using the '@use' rule?

enter image description here

CodePudding user response:

Try @use ../abstracts/colors @use ../abstracts/fonts

relative-path / is missing

  • Related