From ae9960be53f54a2ea8fff9b353edc3c123017cb9 Mon Sep 17 00:00:00 2001 From: Alan Date: Fri, 23 Aug 2019 08:05:25 +0200 Subject: [PATCH] docs: remove universalProject option from app shell docs (#32281) This option has been deprecated in verson 9 as it has no effect https://github.com/angular/angular-cli/pull/15394 PR Close #32281 --- aio/content/guide/app-shell.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/aio/content/guide/app-shell.md b/aio/content/guide/app-shell.md index 77a14a80de..e6cf74f203 100644 --- a/aio/content/guide/app-shell.md +++ b/aio/content/guide/app-shell.md @@ -21,11 +21,10 @@ For an existing application, you have to manually add the `RouterModule` and def Use the CLI to automatically create the app shell. -ng generate app-shell --client-project my-app --universal-project server-app +ng generate app-shell --client-project my-app -* `my-app` takes the name of your client application. -* `server-app` takes the name of the Universal (or server) application. +* `client-project` takes the name of your client application. After running this command you will notice that the `angular.json` configuration file has been updated to add two new targets, with a few other changes.