Automatically embed images into CSS (and Less, ...) files

3
Voted

Please, enable automatic embedding of images into CSS (and Less, Sass, ...) files using DATA URIs. It may work only for images with ?embed in query string. For example, this code:

li { background: url("image.png?embed") no-repeat; }

Should be compiled to:

li { background: url(data:image/png;base64,[image data]) no-repeat; }
Status: New