gulp-css-rebase-urls icon indicating copy to clipboard operation
gulp-css-rebase-urls copied to clipboard

Rebase relative image URLs

Results 10 gulp-css-rebase-urls issues
Sort by recently updated
recently updated
newest added

Might be inherent duplicate of #4

Updates to rework 1.0.1 and pulls in rework-plugin-url (as replacement for old `rework.url` which is no longer in core) in order to take advantage of bug fixes not present in...

http://en.wikipedia.org/wiki/Data_URI_scheme

This is to accommodate the situation where the CSS files are being located to another directory but the associated images are not being relocated.

I guess the check ``` javascript if (isAbsolute(url) && validator.isURL(url)) { ... } ``` should really read `||`? In case of URLs starting with "http(s)://...", isAbsolute() will return false but...

The pr is useful for java freemarker or jsp like project.

IE's `behavior` treats relative URLs as relative to the document referencing the CSS. Thus, in most cases the only practical solution is to use absolute URLs with `behavior`. Don't try...

Prevents gulp-css-rebase-urls from silently killing gulp task if an error occurs while processing files. Instead the error will be wrapped in a PluginError and passed up to the pipeline for...

For example: i need a slash before all urls /static/blabla The plugin does 'static/blabla' and when minfiy file places in /static it will be /static/static/blabla in browser i tried to...