File tree 1 file changed +6
-2
lines changed
1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -165,7 +165,9 @@ class MiniCssExtractPlugin {
165
165
}
166
166
167
167
identifier ( ) {
168
- return `css|${ this . _identifier } |${ this . _identifierIndex } |${ this . layer } |${ this . supports } |${ this . media } }}` ;
168
+ return `css|${ this . _identifier } |${ this . _identifierIndex } |${
169
+ this . layer || ""
170
+ } |${ this . supports || "" } |${ this . media } }}`;
169
171
}
170
172
171
173
/**
@@ -175,7 +177,9 @@ class MiniCssExtractPlugin {
175
177
readableIdentifier ( requestShortener ) {
176
178
return `css ${ requestShortener . shorten ( this . _identifier ) } ${
177
179
this . _identifierIndex ? ` (${ this . _identifierIndex } )` : ""
178
- } `;
180
+ } ${ this . layer ? ` (layer ${ this . layer } )` : "" } ${
181
+ this . supports ? ` (supports ${ this . supports } )` : ""
182
+ } ${ this . media ? ` (media ${ this . media } )` : "" } `;
179
183
}
180
184
181
185
// eslint-disable-next-line class-methods-use-this
You can’t perform that action at this time.
0 commit comments