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 748d3ab commit de14293Copy full SHA for de14293
packages/angular_devkit/build_angular/src/webpack/plugins/named-chunks-plugin.ts
@@ -41,6 +41,11 @@ export class NamedChunksPlugin {
41
continue;
42
}
43
44
+ if (block.groupOptions.name) {
45
+ // Ignore groups which have been named already.
46
+ return undefined;
47
+ }
48
+
49
for (const dependency of block.dependencies) {
50
if (dependency instanceof ImportDependency) {
51
return Template.toPath(dependency.request);
0 commit comments