We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d13686d commit b5901d0Copy full SHA for b5901d0
src/proxy/index.ts
@@ -1,5 +1,4 @@
1
import express, { Application } from 'express';
2
-import bodyParser from 'body-parser';
3
import http from 'http';
4
import https from 'https';
5
import fs from 'fs';
@@ -57,8 +56,6 @@ export const proxyPreparations = async () => {
57
56
// just keep this async incase it needs async stuff in the future
58
const createApp = async (): Promise<Application> => {
59
const app = express();
60
- // Setup the proxy middleware
61
- app.use(bodyParser.raw(options));
62
app.use('/', router);
63
return app;
64
};
0 commit comments