You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If a directory is imported can you search for a file named "index.less" and import that file? If not, throw an exception because the rder of the imported files is important. It's the same funcionality that the node's require function.
If a directory is imported can you search for a file named "index.less" and import that file? If not, throw an exception because the rder of the imported files is important. It's the same funcionality that the node's require function.
My main file has:
@import "dir1/index";
@import "dir2/index";
@import "dir3/index";
And for me it's preferable to have:
@import "dir1";
@import "dir2";
@import "dir3";
What do you think?
The text was updated successfully, but these errors were encountered: