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 46bd3db commit 17944fbCopy full SHA for 17944fb
src/app.ts
@@ -14,16 +14,12 @@ import * as express from 'express';
14
import * as favicon from 'serve-favicon';
15
import * as bodyParser from 'body-parser';
16
import * as compression from 'compression';
17
-import * as monitor from 'express-status-monitor';
18
import { bootstrap } from './core/Bootstrap';
19
import { Log } from './core/log';
20
21
22
bootstrap.configureExpress((app: express.Application) => app
23
24
- // Report real time server metrics for Express-based node servers
25
- .use(monitor())
26
-
27
// Enabling the cors headers
28
.options('*', cors())
29
.use(cors())
0 commit comments