From c8648e66150a5a7e413e4c225aa850b281dc65a2 Mon Sep 17 00:00:00 2001 From: Vitaly Takmazov Date: Sun, 30 Oct 2022 01:57:28 +0300 Subject: express: enable body parser --- vnext/server/index.js | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'vnext/server/index.js') diff --git a/vnext/server/index.js b/vnext/server/index.js index 729f05d6..c347739f 100644 --- a/vnext/server/index.js +++ b/vnext/server/index.js @@ -1,4 +1,6 @@ import express from 'express'; +import { raw } from 'body-parser'; +import cors from 'cors'; import config from 'config'; // we'll talk about this in a minute: @@ -12,6 +14,8 @@ const path = require('path'); // initialize the application and create the routes const app = express(); +app.use(raw()); +app.use(cors()); const router = express.Router(); router.post('/api/sender', event); -- cgit v1.2.3