From ea3a4c8455c6ae06c7e8b1203fcf86f38b0f7adc Mon Sep 17 00:00:00 2001 From: legonzaur Date: Sun, 12 Mar 2023 11:19:12 +0100 Subject: [PATCH] debug mode --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 420d3bc..db77888 100644 --- a/src/index.ts +++ b/src/index.ts @@ -13,7 +13,7 @@ app.use(express.json()) app.use('/', (req, res, next) => { console.log(JSON.stringify(req.body)) - next() + res.send(200) }) app.use(cors())