From 6056590d501c502422a8bb4d8d9f41ec5a4c10e8 Mon Sep 17 00:00:00 2001 From: Rajesh Kumar <58899851+rajeshkumr@users.noreply.github.com> Date: Tue, 24 Oct 2023 06:57:11 -0700 Subject: [PATCH] Update quick-start.md Add command for building project for production --- docs/quick-start.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/quick-start.md b/docs/quick-start.md index 33e31745..77655a79 100644 --- a/docs/quick-start.md +++ b/docs/quick-start.md @@ -46,7 +46,11 @@ console.log( Start a development server by: ```bash bun dev -``` + +Build project for production etc: +```bash +bun build ./src/* --outdir ./dist + Open your browser and go to `http://localhost:3000`.