From 78457da327fa283a28f546f48026eff8575ef328 Mon Sep 17 00:00:00 2001 From: Ilya Radchenko Date: Fri, 16 Nov 2018 10:02:46 -0500 Subject: [PATCH] docs: update deploy script to build for prod resolves #67 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d3be3ec..cc608da 100644 --- a/README.md +++ b/README.md @@ -104,7 +104,7 @@ For ease of use you can add the following to your `package.json`: ```json "scripts": { - "deploy": "ember build && ember github-pages:commit --message \"Deploy gh-pages from commit $(git rev-parse HEAD)\" && git push origin gh-pages:gh-pages" + "deploy": "ember build --environment production && ember github-pages:commit --message \"Deploy gh-pages from commit $(git rev-parse HEAD)\" && git push origin gh-pages:gh-pages" } ```