Skip to content

Commit 5e7f7de

Browse files
filipesilvaclydin
authored andcommitted
fix(@angular-devkit/build-angular): add missing deploy-url to server
Fix #11426
1 parent df409e6 commit 5e7f7de

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

packages/angular_devkit/build_angular/src/server/schema.d.ts

+4
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,10 @@ export interface BuildWebpackServerSchema {
2222
* Use a separate bundle containing code used across multiple bundles.
2323
*/
2424
commonChunk?: boolean;
25+
/**
26+
* URL where files will be deployed.
27+
*/
28+
deployUrl?: string;
2529
/**
2630
* Show circular dependency warnings on builds.
2731
*/

packages/angular_devkit/build_angular/src/server/schema.json

+4
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,10 @@
6969
"description": "Use a separate bundle containing code used across multiple bundles.",
7070
"default": true
7171
},
72+
"deployUrl": {
73+
"type": "string",
74+
"description": "URL where files will be deployed."
75+
},
7276
"verbose": {
7377
"type": "boolean",
7478
"description": "Adds more details to output logging.",

0 commit comments

Comments
 (0)