I want to declare a variable with the path to the library:
@libPath: "any/path/to/lib";
And use it in @import
. Something like this:
@import "@{libPath}/file.less";
And I see the result after processing:
@import url("@{libPath}/file.less");
No such possibility or am I doing something wrong?
Thanks.