From 9f4e036173d0525523cfba717ec09ba056e236b3 Mon Sep 17 00:00:00 2001 From: Shadowfacts Date: Sat, 6 Nov 2021 12:06:41 -0400 Subject: [PATCH] Increase body limit to 1mb --- index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/index.js b/index.js index a5e3f74..e48f295 100644 --- a/index.js +++ b/index.js @@ -9,6 +9,7 @@ const app = express(); app.use(morgan('combined')); app.use(bodyParser.text({ type: "text/html", + limit: '1mb', })); app.get('/status', (req, res) => {