I'm using Django Compress to be able to use less files directly, instead of having to convert them to css files, which works fine except for the background images which paths doesn't get translated correctly, by some reason.The less files is linked in to base.html like this:\[code\]<link rel="stylesheet/less" type="text/css" media="all" href="http://stackoverflow.com/questions/15828771/{{ STATIC_URL }}css/less/style.less" />\[/code\]The images lives in static/images and the less files in static/css/less. In the less files I link to them like this:\[code\]background-image:url(".../images/sprite.png");\[/code\]...which should work fine, but isn't working at all. When looking at the rendered css the background images paths is:\[code\]"http://localhost:8000/static/css/less/.../images/sprite.png"\[/code\]What is wrong and how can I fix it?NOTE: I've tried 1, 2 and 3 dots without any luck.