Skip to content

Commit 00ef75f

Browse files
authored
📚 fix Markdown list formatting
1 parent 9906b99 commit 00ef75f

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -297,9 +297,9 @@ Use a custom [`.profile.d` script](https://devcenter.heroku.com/articles/buildpa
297297
1. make it executable `chmod +x .profile.d/000-react-app-exports.sh`
298298
1. add an `export` line for each variable:
299299

300-
```bash
301-
export REACT_APP_ADDON_CONFIG=${ADDON_CONFIG:-}
302-
```
300+
```bash
301+
export REACT_APP_ADDON_CONFIG=${ADDON_CONFIG:-}
302+
```
303303
1. set-up & use [Runtime configuration](#runtime-configuration) to access the variables
304304

305305
For example, to use the API key for the [Filestack](https://elements.heroku.com/addons/filepicker) JS image uploader:
@@ -315,8 +315,8 @@ Troubleshooting
315315
1. Search our [issues](https://github.com/mars/create-react-app-buildpack/issues?utf8=✓&q=is%3Aissue%20) to see if someone else has experienced the same problem.
316316
1. Search the internet for mentions of the error message and its subject module, e.g. `ENOENT "node-sass"`
317317
1. File a new [issue](https://github.com/mars/create-react-app-buildpack/issues/new). Please include:
318-
* build log output
319-
* link to GitHub repo with the source code (if private, grant read access to @mars)
318+
* build log output
319+
* link to GitHub repo with the source code (if private, grant read access to @mars)
320320

321321

322322
Version compatibility
@@ -341,15 +341,15 @@ Architecture 🏙
341341
This buildpack composes several buildpacks (specified in [`.buildpacks`](.buildpacks)) to support **no-configuration deployment** on Heroku:
342342

343343
1. [`heroku/nodejs` buildpack](https://github.com/heroku/heroku-buildpack-nodejs)
344-
* complete Node.js enviroment to support the webpack build
345-
* `node_modules` cached between deployments
344+
* complete Node.js enviroment to support the webpack build
345+
* `node_modules` cached between deployments
346346
2. [`mars/create-react-app-inner-buildpack`](https://github.com/mars/create-react-app-inner-buildpack)
347-
* enables [runtime environment variables](#runtime-configuration)
348-
* generates the [default `static.json`](#customization)
349-
* performs the production build for create-react-app, `npm run build`
347+
* enables [runtime environment variables](#runtime-configuration)
348+
* generates the [default `static.json`](#customization)
349+
* performs the production build for create-react-app, `npm run build`
350350
3. [`heroku/static` buildpack](https://github.com/heroku/heroku-buildpack-static)
351-
* [Nginx](http://nginx.org/en/) web server
352-
* handy static website & SPA (single-page app) [customization options](https://github.com/heroku/heroku-buildpack-static#configuration)
351+
* [Nginx](http://nginx.org/en/) web server
352+
* handy static website & SPA (single-page app) [customization options](https://github.com/heroku/heroku-buildpack-static#configuration)
353353

354354

355355
### General-purpose SPA deployment

0 commit comments

Comments
 (0)