We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
outputPath
1 parent fe25ab1 commit 1be3b07Copy full SHA for 1be3b07
packages/angular_devkit/build_angular/src/webpack/configs/common.ts
@@ -507,7 +507,14 @@ function getCacheSettings(
507
.update(packageVersion)
508
.update(wco.projectRoot)
509
.update(JSON.stringify(wco.tsConfig))
510
- .update(JSON.stringify(wco.buildOptions))
+ .update(
511
+ JSON.stringify({
512
+ ...wco.buildOptions,
513
+ // Needed because outputPath changes on every build when using i18n extraction
514
+ // https://github.com/angular/angular-cli/blob/736a5f89deaca85f487b78aec9ff66d4118ceb6a/packages/angular_devkit/build_angular/src/utils/i18n-options.ts#L264-L265
515
+ outputPath: undefined,
516
+ }),
517
+ )
518
.update(supportedBrowsers.join(''))
519
.digest('hex'),
520
};
0 commit comments