From c0055de758ab71183e6d6fa7a5679b4d7326f4ed Mon Sep 17 00:00:00 2001 From: Taishi Date: Mon, 6 Jan 2020 08:09:29 -0800 Subject: [PATCH] en: document delete heroku-deployment section (#1797) --- en/faq/heroku-deployment.md | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/en/faq/heroku-deployment.md b/en/faq/heroku-deployment.md index a6af12531..dae6c7100 100644 --- a/en/faq/heroku-deployment.md +++ b/en/faq/heroku-deployment.md @@ -30,17 +30,6 @@ You should see this in your Heroku dashboard (Settings section): ![nuxt config vars Heroku](https://i.imgur.com/EEKl6aS.png) -Then, we tell Heroku to launch `npm run build` via the `heroku-postbuild` script in our `package.json`: - -```js -"scripts": { - "dev": "nuxt", - "build": "nuxt build", - "start": "nuxt start", - "heroku-postbuild": "npm run build" -} -``` - Heroku uses a [Procfile](https://devcenter.heroku.com/articles/procfile) (name the file `Procfile` with no file extension) that specifies the commands that are executed by the apps dynos. To start the Procfile will be very simple, and needs to contain the following line: ```