From 31838b9ef3ec9dfe1c0d5ff853b9194eddb5994c Mon Sep 17 00:00:00 2001 From: dannyrb Date: Thu, 9 May 2019 22:26:17 -0400 Subject: [PATCH] Building for production: quick hits --- docs/latest/essentials/getting-started.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/docs/latest/essentials/getting-started.md b/docs/latest/essentials/getting-started.md index 3ee2151cd..f569429ca 100644 --- a/docs/latest/essentials/getting-started.md +++ b/docs/latest/essentials/getting-started.md @@ -74,6 +74,19 @@ To create a production build, use yarn build. Our app, hosted by the development server +### Building for Production + +> More comprehensive guides for building and publishing can be found in our +> [deployment docs](./../deployment/index.md) + +```bash +# Build static assets to host a PWA +yarn run build:web + +# Build packaged output +yarn run build:package +``` + ## Next Steps ...