From 60a5cd91c8fb567f8aa12b501a543144c6178144 Mon Sep 17 00:00:00 2001 From: Marsell Kukuljevic Date: Wed, 28 Apr 2021 14:11:56 +0200 Subject: [PATCH] Update README.md on building app/ for production. --- README.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 0d5d3dd..9b9bdb9 100644 --- a/README.md +++ b/README.md @@ -55,7 +55,13 @@ Then install the Angular compiler needed for the client-side app: ## Build the client-side app: - pushd app && npm run build && popd +For development: + + pushd app && ng build && popd + +For production (shakes tree and minifies to get smaller size): + + pushd app && ng build --prod && popd ## Generate server certificates