diff --git a/aio/content/guide/app-shell.md b/aio/content/guide/app-shell.md index e6cf74f203..cef5676605 100644 --- a/aio/content/guide/app-shell.md +++ b/aio/content/guide/app-shell.md @@ -43,6 +43,12 @@ After running this command you will notice that the `angular.json` configuration "browserTarget": "my-app:build", "serverTarget": "my-app:server", "route": "shell" + }, + "configurations": { + "production": { + "browserTarget": "my-app:build:production", + "serverTarget": "my-app:server:production" + } } } @@ -55,4 +61,12 @@ Use the CLI to build the `app-shell` target. ng run my-app:app-shell +Or to use the production configuration. + + +ng run my-app:app-shell:production + + To verify the build output, open `dist/my-app/index.html`. Look for default text `app-shell works!` to show that the app shell route was rendered as part of the output. + +