Skip to content

Commit 9ce8fef

Browse files
alan-agius4dgp1130
authored andcommitted
1 parent efd1457 commit 9ce8fef

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/angular/build/src/tools/esbuild/commonjs-checker.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ function createCommonJSModuleError(request: string, importer: string): PartialMe
169169
{
170170
text:
171171
'CommonJS or AMD dependencies can cause optimization bailouts.\n' +
172-
'For more information see: https://angular.io/guide/build#configuring-commonjs-dependencies',
172+
'For more information see: https://angular.dev/tools/cli/build#configuring-commonjs-dependencies',
173173
},
174174
],
175175
};

packages/angular_devkit/build_angular/src/tools/webpack/plugins/common-js-usage-warn-plugin.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ export class CommonJsUsageWarnPlugin {
9191
const warning =
9292
`${(issuer as NormalModule | null)?.userRequest} depends on '${rawRequest}'. ` +
9393
'CommonJS or AMD dependencies can cause optimization bailouts.\n' +
94-
'For more info see: https://angular.io/guide/build#configuring-commonjs-dependencies';
94+
'For more info see: https://angular.dev/tools/cli/build#configuring-commonjs-dependencies';
9595

9696
// Avoid showing the same warning multiple times when in 'watch' mode.
9797
if (!this.shownWarnings.has(warning)) {

0 commit comments

Comments
 (0)