We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa58310 commit 5de6572Copy full SHA for 5de6572
src/index.js
@@ -465,8 +465,7 @@ class MiniCssExtractPlugin {
465
466
for (const chunk of chunks) {
467
const isAsync = !isInitialOrHasNoParents(chunk);
468
- // eslint-disable-next-line no-underscore-dangle
469
- for (const module of chunk._modules) {
+ for (const module of chunk.modulesIterable) {
470
if (module.type === MODULE_TYPE) {
471
if (this.shouldDisableExtract({ module, isAsync })) {
472
moduleToBeRebuild.add(module);
0 commit comments