Skip to content

Commit

Permalink
fix(@angular-devkit/build-angular): use contenthash instead of `chu…
Browse files Browse the repository at this point in the history
  • Loading branch information
alan-agius4 authored and dgp1130 committed Jan 11, 2022
1 parent 6046e06 commit 6876ad3
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,13 @@ export function getOutputHashFormat(option: string, length = 20): HashFormat {
none: { chunk: '', extract: '', file: '', script: '' },
media: { chunk: '', extract: '', file: `.[hash:${length}]`, script: '' },
bundles: {
chunk: `.[chunkhash:${length}]`,
chunk: `.[contenthash:${length}]`,
extract: `.[contenthash:${length}]`,
file: '',
script: `.[hash:${length}]`,
},
all: {
chunk: `.[chunkhash:${length}]`,
chunk: `.[contenthash:${length}]`,
extract: `.[contenthash:${length}]`,
file: `.[hash:${length}]`,
script: `.[hash:${length}]`,
Expand Down

0 comments on commit 6876ad3

Please sign in to comment.