Skip to content

Commit

Permalink
fix(@angular-devkit/build-angular): use the name as chunk filename in…
Browse files Browse the repository at this point in the history
…stead of id
  • Loading branch information
Alberto Calvo authored and clydin committed Jun 16, 2021
1 parent c9f531d commit 0fe6cfe
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -425,7 +425,7 @@ export function getCommonConfig(wco: WebpackConfigOptions): Configuration {
return `[name]${targetInFileName}${hashFormat.chunk}.js`;
}
},
chunkFilename: `[id]${targetInFileName}${hashFormat.chunk}.js`,
chunkFilename: `[name]${targetInFileName}${hashFormat.chunk}.js`,
},
watch: buildOptions.watch,
watchOptions: getWatchOptions(buildOptions.poll),
Expand Down

0 comments on commit 0fe6cfe

Please sign in to comment.