I would like to know if it is possible to write only the name of the folder and each file inside will be automatically imported?
For example, I have main.scss
which contains only import
@import "components/forms"; @import "components/header"; @import 'components/intro';
and I would just like to write
@import "components/**/*";
Thus, each file inside components
will be imported, as indicated above.
source share