Created by: dsernst
Pretty simple docs change:
Recommendations for package.json
scripts
for deploying to Github Pages:
+"deploy": "npm run build && gh-pages -d build"
-"deploy": "gh-pages -d build"
It seems very unlikely the user would want to deploy without rebuilding and can be confusing since the dev server automatically rebuilds.
This also adds a line to these deploy docs instructing where to put the CNAME
file:
+You can configure a custom domain with GitHub pages, by adding a `CNAME` file to the `public/` folder.
This fixes https://github.com/facebookincubator/create-react-app/issues/654