|
1 |
| -/*webpackIgnore: true*/ |
| 1 | +/* webpackIgnore: true */ |
2 | 2 | @import url(./basic.css);
|
| 3 | +@import /* webpackIgnore: true */ url(./imported.css); |
| 4 | +@import /* webpackIgnore: false */ url(./simple.css); |
| 5 | +@import /** webpackIgnore: false **/ /* webpackIgnore: true */ url(./simple.css); |
| 6 | +@import /** webpackIgnore: false **/ /* webpackIgnore: true */ /* webpackIgnore: false */ url(./simple.css); |
3 | 7 |
|
4 |
| -@import /* webpackIgnore: true */ url(./imported.css); |
| 8 | +.class { |
| 9 | + color: red; |
| 10 | + background: /** webpackIgnore: true */ url("./url/img.png"), url("./url/img.png"); |
| 11 | +} |
5 | 12 |
|
6 |
| -/** webpackIgnore: true **/ |
7 |
| -@import url(./simple.css); |
| 13 | +.class { |
| 14 | + color: red; |
| 15 | + background: url("./url/img.png"), /** webpackIgnore: true */ url("./url/img.png"); |
| 16 | +} |
8 | 17 |
|
9 | 18 | .class {
|
10 | 19 | color: red;
|
11 |
| - background: /** webpackIgnore: true */ url("./url/img.png"), url("./url/img.png"); |
| 20 | + /** webpackIgnore: true */ |
| 21 | + background: url("./url/img.png"), url("./url/img.png"); |
| 22 | +} |
| 23 | + |
| 24 | +.class { |
| 25 | + color: red; |
| 26 | + /** webpackIgnore: true */ |
| 27 | + background: url("./url/img.png"), /** webpackIgnore: false */ url("./url/img.png"); |
| 28 | +} |
| 29 | + |
| 30 | +.class { |
| 31 | + color: red; |
| 32 | + /** webpackIgnore: true */ |
| 33 | + background: url("./url/img.png"), /** webpackIgnore: false */ url("./url/img.png"), /** webpackIgnore: true */ url("./url/img.png"), /** webpackIgnore: false */ url("./url/img.png"); |
12 | 34 | }
|
13 | 35 |
|
14 | 36 | .class {
|
15 | 37 | color: red;
|
16 | 38 | /** webpackIgnore: true */
|
17 |
| - background: url("./url/img.png"), url("./url/img.png"); |
| 39 | + background: /** webpackIgnore: false */ url("./url/img.png"), /** webpackIgnore: true */ url("./url/img.png"); |
| 40 | +} |
| 41 | + |
| 42 | +.class { |
| 43 | + color: red; |
| 44 | + background: /** webpackIgnore: true */ /** webpackIgnore: false */ url("./url/img.png"), url("./url/img.png"); |
| 45 | +} |
| 46 | + |
| 47 | +.class { |
| 48 | + color: red; |
| 49 | + background: url("./url/img.png"), /** webpackIgnore: true */ /** webpackIgnore: false */ url("./url/img.png"); |
18 | 50 | }
|
19 | 51 |
|
20 | 52 | .class {
|
|
91 | 123 | );
|
92 | 124 | }
|
93 | 125 |
|
| 126 | +.class { |
| 127 | + background-image: /*webpackIgnore: true*/ image-set( |
| 128 | + url(./url/img.png) 2x, |
| 129 | + url(./url/img.png) 3x, |
| 130 | + url(./url/img.png) 4x |
| 131 | + ), url('./url/img.png'); |
| 132 | +} |
| 133 | + |
94 | 134 | .class {
|
95 | 135 | background-image: image-set(
|
96 | 136 | /*webpackIgnore: true*/
|
|
0 commit comments