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
I think it could be very functional (mainly for lazy programmers) to be able to use a wildcard character in the @import statement to include all *.less files in a directory. Below I've posted an example showing the way it would be used.
@import "../libs/bootstrap/less/*.less";
It would include all files in that directory, except for himself, if he exists in that directory. It would be very important to note that files in this directory that have @import statements in them, can cause infinite loops.
The text was updated successfully, but these errors were encountered:
I think it could be very functional (mainly for lazy programmers) to be able to use a wildcard character in the
@import
statement to include all *.less files in a directory. Below I've posted an example showing the way it would be used.@import "../libs/bootstrap/less/*.less";
It would include all files in that directory, except for himself, if he exists in that directory. It would be very important to note that files in this directory that have
@import
statements in them, can cause infinite loops.The text was updated successfully, but these errors were encountered: