I have just generated a sprite with compass, but for some reason it is adding a leading slash in the generated class url. Is it possible to override this or is it something I ha
Appologies, as soon as I posted the question I found the answer to another question here ...
Compass throwing in forward slash in front of images when making sprites
ANSWER:
By default, compass uses absolute paths for all assets.
To change this behaviour, add this line to your config.rb:
relative_assets = true
Otherwise, you could also change the 'http_path' option to point to where your project sites on your deployment server.