From 7df9040c05bb42b5d2f695c2c22d115383b84b80 Mon Sep 17 00:00:00 2001 From: Ronen Gelman <40659368+RGelman@users.noreply.github.com> Date: Wed, 5 Dec 2018 13:18:56 +0200 Subject: [PATCH] docs: add missing comma to environment config in build guide (#27476) PR Close #27476 --- aio/content/guide/build.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aio/content/guide/build.md b/aio/content/guide/build.md index 843f0d9130..ed37a6fa3c 100644 --- a/aio/content/guide/build.md +++ b/aio/content/guide/build.md @@ -54,7 +54,7 @@ The following sets content sets default values for the production build target: ``` export const environment = { - production: true + production: true, apiUrl: 'http://my-prod-url' }; ```