postcss-initial
postcss-initial copied to clipboard
The rule replaces keywords in normal url in background-image with initial value
https://github.com/maximkoretskiy/postcss-initial/blob/8eaf8fbff8d2a263acc0e0c1ece84f8011217ae5/lib/rules-fabric.js#L70
For example I have the following rule:
.test {
background-image: url("./initial-image/foo.png");
}
This will be replaced with:
.test {
background-image: url("./none-image/foo.png");
}
This causes error.
Hey! Thank you for posting. I can look into in a week or so. If you need fast solution please create a PR.