Skip to content

Commit 0d3b1ea

Browse files
docs: update
1 parent 50d02db commit 0d3b1ea

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

README.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1151,8 +1151,14 @@ With the help of the `/* webpackIgnore: true */`comment, it is possible to disab
11511151
.class {
11521152
/* Disabled url handling for the first url in 'background' declaration */
11531153
color: red;
1154-
background: /** webpackIgnore: true */ url("./url/img.png"),
1155-
url("./url/img.png");
1154+
background:
1155+
/** webpackIgnore: true */ url("./url/img.png"), url("./url/img.png");
1156+
}
1157+
.class {
1158+
/* Disabled url handling for the second url in 'background' declaration */
1159+
color: red;
1160+
background: url("./url/img.png"),
1161+
/** webpackIgnore: true */ url("./url/img.png");
11561162
}
11571163

11581164
/* prettier-ignore */

0 commit comments

Comments
 (0)