Skip to content

Commit 0fe6cfe

Browse files
Alberto Calvoclydin
Alberto Calvo
authored andcommitted
fix(@angular-devkit/build-angular): use the name as chunk filename instead of id
1 parent c9f531d commit 0fe6cfe

File tree

1 file changed

+1
-1
lines changed
  • packages/angular_devkit/build_angular/src/webpack/configs

1 file changed

+1
-1
lines changed

packages/angular_devkit/build_angular/src/webpack/configs/common.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -425,7 +425,7 @@ export function getCommonConfig(wco: WebpackConfigOptions): Configuration {
425425
return `[name]${targetInFileName}${hashFormat.chunk}.js`;
426426
}
427427
},
428-
chunkFilename: `[id]${targetInFileName}${hashFormat.chunk}.js`,
428+
chunkFilename: `[name]${targetInFileName}${hashFormat.chunk}.js`,
429429
},
430430
watch: buildOptions.watch,
431431
watchOptions: getWatchOptions(buildOptions.poll),

0 commit comments

Comments
 (0)