|
value: value.replace(/\binitial\b/g, rule.initial) |
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.