diff --git a/app.js b/app.js index 5ab128e4b4..99409093f4 100644 --- a/app.js +++ b/app.js @@ -2,9 +2,11 @@ const express = require("express"); const app = express(); const port = process.env.PORT || 3001; -app.get("/", (req, res) => res.type('html').send(html)); +app.get("/", (req, res) => res.type("html").send(html)); -const server = app.listen(port, () => console.log(`Example app listening on port ${port}!`)); +const server = app.listen(port, () => + console.log(`Example app listening on port ${port}!`), +); server.keepAliveTimeout = 120 * 1000; server.headersTimeout = 120 * 1000; @@ -54,8 +56,8 @@ const html = `