I think this is not possible, but I thought I ask in case there is a way. The idea is that I have a variable for path to web resource folder so that I only need to change 1 variable in case the path changes.
@root: "../img/";
@file: "test.css";
@url: @root@file;
.px{ background-image: url(@url); }
I get this
.px { background-image: url("../img/" "test.css"); }
instead of
.px { background-image: url("../img/test.css"); }
Any idea on how to achieve this?