From 0ca2a390d50fe6eb22f31db25e24298bb81ead1b Mon Sep 17 00:00:00 2001 From: Santosh Yadav Date: Thu, 7 Nov 2019 22:40:36 +0530 Subject: [PATCH] docs: app-name not rendering on browser (#33613) Fixes #33612 PR Close #33613 --- aio/content/guide/deployment.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/aio/content/guide/deployment.md b/aio/content/guide/deployment.md index 8320db596f..901839aaf9 100644 --- a/aio/content/guide/deployment.md +++ b/aio/content/guide/deployment.md @@ -230,7 +230,7 @@ modified to serve `index.html`: http.ListenAndServe(":"+httpPort, nil) } ``` - + * [Ruby](https://www.ruby-lang.org/): create a Ruby server using ([sinatra](http://sinatrarb.com/)) with a basic Ruby file that configures the server `server.rb`: ``` ruby @@ -669,7 +669,7 @@ In `angular.json` add two new configuration sections under the `build` and `serv ... }, "es5": { - "browserTarget": ":build:es5" + "browserTarget": "<app-name>:build:es5" } } }, @@ -741,7 +741,7 @@ Create an [ES5 serve configuration](guide/deployment#configuring-serve-for-es5) ... }, "es5": { - "devServerTarget": ":serve:es5" + "devServerTarget": "<app-name>:serve:es5" } } },