@@ -67,7 +67,7 @@ Ensure [requirements](#user-content-requires) are met, then execute the followin
6767create-react-app $APP_NAME
6868cd $APP_NAME
6969git init
70- heroku create $APP_NAME --buildpack https://github.com/ mars/create-react-app-buildpack.git
70+ heroku create $APP_NAME --buildpack mars/create-react-app
7171git add .
7272git commit -m " Start with create-react-app"
7373git push heroku master
@@ -102,7 +102,7 @@ At this point, this new repo is local, only on your computer. Eventually, you ma
102102### Create the Heroku app
103103
104104``` bash
105- heroku create $APP_NAME --buildpack https://github.com/ mars/create-react-app-buildpack.git
105+ heroku create $APP_NAME --buildpack mars/create-react-app
106106```
107107
108108✏️ * Replace ` $APP_NAME ` with a name for your unique app.*
@@ -155,7 +155,7 @@ Heroku CI uses [`app.json`](https://devcenter.heroku.com/articles/app-json-schem
155155{
156156 "buildpacks" : [
157157 {
158- "url" : " https://github.com/ mars/create-react-app-buildpack "
158+ "url" : " mars/create-react-app"
159159 }
160160 ]
161161}
@@ -417,7 +417,7 @@ Troubleshooting
417417 If it' s not using `create-react-app-buildpack`, then set it:
418418
419419 ```bash
420- heroku buildpacks:set https://github.com/ mars/create-react-app-buildpack.git
420+ heroku buildpacks:set mars/create-react-app
421421 ```
422422
423423 ...and deploy with the new buildpack:
0 commit comments