diff --git a/docs/generated/api-angular/generators/mfe-host.md b/docs/generated/api-angular/generators/mfe-host.md index 373610cc48403..80b217de61e28 100644 --- a/docs/generated/api-angular/generators/mfe-host.md +++ b/docs/generated/api-angular/generators/mfe-host.md @@ -55,6 +55,6 @@ The name of the host app to attach this host app to. ### port -Type: `string` +Type: `number` The port on which this app should be served. diff --git a/docs/generated/api-angular/generators/mfe-remote.md b/docs/generated/api-angular/generators/mfe-remote.md index 29f39af01d1cb..f41a40a4ad6e9 100644 --- a/docs/generated/api-angular/generators/mfe-remote.md +++ b/docs/generated/api-angular/generators/mfe-remote.md @@ -55,6 +55,6 @@ The name of the host app to attach this remote app to. ### port -Type: `string` +Type: `number` The port on which this app should be served. diff --git a/packages/angular/src/generators/mfe-host/schema.json b/packages/angular/src/generators/mfe-host/schema.json index afa31d822f4dd..9db4e6f5f5f59 100644 --- a/packages/angular/src/generators/mfe-host/schema.json +++ b/packages/angular/src/generators/mfe-host/schema.json @@ -25,7 +25,7 @@ "description": "The name of the host app to attach this host app to." }, "port": { - "type": "string", + "type": "number", "description": "The port on which this app should be served." } }, diff --git a/packages/angular/src/generators/mfe-remote/schema.json b/packages/angular/src/generators/mfe-remote/schema.json index eb7f996aa402a..5468245552b19 100644 --- a/packages/angular/src/generators/mfe-remote/schema.json +++ b/packages/angular/src/generators/mfe-remote/schema.json @@ -25,7 +25,7 @@ "description": "The name of the host app to attach this remote app to." }, "port": { - "type": "string", + "type": "number", "description": "The port on which this app should be served." } },