from https://github.com/less/less.js/issues/2541 but I've seen this in projects ``` // mixins.less .background(@image) { background-image: data-uri(@image); } ``` ``` // app/content/button.less button { .background("images/btn.jpg"); } ``` I would expect the image to be fetched from `app/content/images/btn.jpg` but it is fetched from `images/btn.jpg`. I welcome feedback on whether this is a breaking change (warranting a major up) or a bug fix.