From c3e4d80cb4d01e0c97443135688df18a7aa8af64 Mon Sep 17 00:00:00 2001 From: Abdulkarim Date: Tue, 22 Dec 2020 02:30:31 +0900 Subject: [PATCH] Fixed Heroku timeout error R10. #Error# : Error R10 (Boot timeout) -> Web process failed to bind to $PORT within 60 seconds of launch #Fix#: Remove engines in package.json. further info: https://github.com/keystonejs/keystone-classic/issues/3994#issuecomment-280639251 --- package.json | 3 --- 1 file changed, 3 deletions(-) diff --git a/package.json b/package.json index dac12c7..76714af 100644 --- a/package.json +++ b/package.json @@ -4,9 +4,6 @@ "description": "A boilerplate for web APIs using Node", "main": "index.js", "private": true, - "engines": { - "node": ">=7.6.0" - }, "scripts": { "start": "node cluster.js", "dev": "cross-env NODE_PATH=. NODE_ENV=development nodemon",